by karog » Sun Sep 08, 2013 1:59 pm
Transmissiion:
In /etc/conf.d/transmissiond
$this->bbcode_second_pass_code('', '
# example configuration file
# TRANS_USER="transmission"
')
In /etc/rc.d/transmissiond
$this->bbcode_second_pass_code('', '
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/conf.d/transmissiond
PID=`pidof -o %PPID /usr/bin/transmission-daemon`
case "$1" in
start)
stat_busy "Starting Transmission Daemon"
[ -z "$PID" ] && su -l -s /bin/sh -c "/usr/bin/transmission-daemon $TRANS_ARGS" "${TRANS_USER:-transmission}"
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon transmissiond
stat_done
fi
;;
stop)
stat_busy "Stopping Transmission Daemon"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon transmissiond
stat_done
fi
;;
restart)
$0 stop
while [ ! -z "$PID" -a -d "/proc/$PID" ]; do sleep 1; done
$0 start
;;
reload)
stat_busy "Reloading config"
[ ! -z "$PID" ] && kill -HUP $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
stat_done
fi
;;
*)
echo "usage: $0 {start|stop|restart|reload}"
esac
exit 0
')
Samba:
In /etc/conf.d/samba
$this->bbcode_second_pass_code('', '
## Path: Network/Samba
## Description: Samba process options
## Type: string
## Default: ""
## ServiceRestart: samba
SAMBAOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: smb
SMBDOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: nmb
NMBDOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: winbind
WINBINDOPTIONS=""
')
In /etc/rc.d/samba
$this->bbcode_second_pass_code('', '
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
[ -f /etc/conf.d/samba ] && . /etc/conf.d/samba
[ -z "$SAMBA_DAEMONS" ] && SAMBA_DAEMONS=(smbd nmbd)
case "$1" in
start)
rc=0
stat_busy "Starting Samba Server"
if [ ! -x /var/log/samba ] ; then
install -m755 -d /var/log/samba
fi
for d in ${SAMBA_DAEMONS[@]}; do
PID=`pidof -o %PPID /usr/bin/$d`
[ -z "$PID" ] && /usr/bin/$d -D
rc=$(($rc+$?))
done
if [ $rc -gt 0 ]; then
stat_fail
else
add_daemon samba
stat_done
fi
;;
stop)
rc=0
stat_busy "Stopping Samba Server"
for d in ${SAMBA_DAEMONS[@]}; do
PID=`pidof -o %PPID /usr/bin/$d`
[ -z "$PID" ] || kill $PID &> /dev/null
rc=$(($rc+$?))
done
if [ $rc -gt 0 ]; then
stat_fail
else
rm /run/samba/smbd.pid &>/dev/null
rm /run/samba/nmbd.pid &>/dev/null
rm /run/samba/winbindd.pid &>/dev/null
rm_daemon samba
stat_done
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0
')