12 lines
204 B
Bash
Executable File
12 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
source /build/config
|
|
set -x
|
|
|
|
## Install cron daemon
|
|
apt_install_permanent cron
|
|
|
|
## Remove useless cron entries
|
|
# Checks for lost+found and scans for mtab
|
|
rm -f /etc/cron.daily/standard
|