6 lines
104 B
Bash
6 lines
104 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "${CRONTAB}" > /crontabs/root
|
||
|
|
||
|
/usr/sbin/crond -f -d8 -L /var/log/cron.log -c /crontabs
|