blob: 6232dd2636522f6edfee2a4ef39f7fb81a5e05a2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Crontabs are located by default in /var/spool/cron/crontabs/
# The default configuration is also calling all the scripts in /etc/periodic/${period}
if test -f ./setup; then
# shellcheck disable=SC2039,SC1091,SC3046
source ./setup
fi
exec gosu root /usr/sbin/crond -fS
|