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.
 
 
 
 
 
 

29 lines
625 B

#!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc
##
## rc.cvsd -- Run-Commands for CVS Daemon
##
%config
cvsd_enable="yes"
%start -p 200 -u root
if opServiceEnabled cvsd; then
@l_prefix@/sbin/cvsd
fi
%stop -p 200 -u root
if opServiceEnabled cvsd; then
if [ -f @l_prefix@/var/cvsd/cvsd.pid ]; then
kill `cat @l_prefix@/var/cvsd/cvsd.pid`
fi
fi
%restart -u root
if opServiceEnabled cvsd; then
if [ -f @l_prefix@/var/cvsd/cvsd.pid ]; then
kill `cat @l_prefix@/var/cvsd/cvsd.pid`
sleep 1
fi
@l_prefix@/sbin/cvsd
fi