create /var/spool/cron in cron init script and change the default crontab location...
[openwrt.git] / openwrt / package / base-files / default / etc / init.d / S60cron
index ed43e74..6647fe1 100755 (executable)
@@ -1,2 +1,5 @@
 #!/bin/sh
 #!/bin/sh
-[ -d /etc/crontabs ] && crond -c /etc/crontabs
+[ -d /etc/crontabs ] && {
+       mkdir -p /var/spool/cron
+       crond -c /etc/crontabs
+}
This page took 0.025744 seconds and 4 git commands to generate.