blob: 584db590d835510ed757403a420f6e1defceb4ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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"
|