b4a4a1480a
SVN-Revision: 2621
5 lines
88 B
Bash
Executable file
5 lines
88 B
Bash
Executable file
#!/bin/sh
|
|
[ -d /etc/crontabs ] && {
|
|
mkdir -p /var/spool/cron
|
|
crond -c /etc/crontabs
|
|
}
|