bdba638725
SVN-Revision: 2805
8 lines
184 B
Bash
Executable file
8 lines
184 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
|
|
}
|
|
crond -c /etc/crontabs
|