blob: 9aa9fb9f2753e09153bc7ac92ffbf6a94ca8f19d (
plain)
1
2
3
4
5
6
7
8
9
|
#!/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
source ./setup
fi
exec gosu root /usr/sbin/crond -fS
|