You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc
|
|
|
|
##
|
|
|
|
## rc.dcron -- Run-Commands for DCRON Daemon
|
|
|
|
##
|
|
|
|
|
|
|
|
%config
|
|
|
|
dcron_enable="yes"
|
|
|
|
|
|
|
|
%start -p 200 -u @l_susr@
|
|
|
|
opServiceEnabled dcron || exit 0
|
|
|
|
rm -f @l_prefix@/var/dcron/dcron.pid
|
|
|
|
@l_prefix@/sbin/crond
|
|
|
|
|
|
|
|
%stop -p 200 -u @l_susr@
|
|
|
|
opServiceEnabled dcron || exit 0
|
|
|
|
if [ -f @l_prefix@/var/dcron/dcron.pid ]; then
|
|
|
|
kill -TERM `cat @l_prefix@/var/dcron/dcron.pid`
|
|
|
|
rm -f @l_prefix@/var/dcron/dcron.pid
|
|
|
|
fi
|
|
|
|
|