diff options
Diffstat (limited to 'libexec/rc/rc.d/cron')
-rwxr-xr-x | libexec/rc/rc.d/cron | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libexec/rc/rc.d/cron b/libexec/rc/rc.d/cron new file mode 100755 index 000000000000..584db590d835 --- /dev/null +++ b/libexec/rc/rc.d/cron @@ -0,0 +1,28 @@ +#!/bin/sh +# +# + +# PROVIDE: cron +# REQUIRE: LOGIN FILESYSTEMS +# BEFORE: securelevel +# KEYWORD: shutdown + +. /etc/rc.subr + +name="cron" +desc="Daemon to execute scheduled commands" +rcvar="cron_enable" +command="/usr/sbin/${name}" +pidfile="/var/run/${name}.pid" + +load_rc_config $name + +# doesn't make sense to run in a svcj: in the generic case it may need +# access to more than a jails allows +cron_svcj="NO" + +if checkyesno cron_dst +then + cron_flags="$cron_flags -s" +fi +run_rc_command "$1" |