1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-23 03:40:13 +03:00
openwrt-xburst/package/base-files/default/etc/init.d/S60cron
nbd 0b535c275d create /var/spool/cron in cron init script and change the default crontab location to /etc/crontabs (fixes #88)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2621 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-12-11 22:00:56 +00:00

6 lines
88 B
Bash
Executable File

#!/bin/sh
[ -d /etc/crontabs ] && {
mkdir -p /var/spool/cron
crond -c /etc/crontabs
}