39701f3264
SVN-Revision: 2812
6 lines
208 B
Bash
Executable file
6 lines
208 B
Bash
Executable file
#!/bin/sh
|
|
[ -d /etc/crontabs ] || mkdir -p /etc/crontabs
|
|
[ -e /var/spool/cron/crontabs ] || {
|
|
mkdir -p /var/spool/cron
|
|
ln -s /etc/crontabs /var/spool/cron/crontabs
|
|
} && crond -c /etc/crontabs
|