2011-09-28 19:13:20 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# $Id: miniupnpd.init.d.script,v 1.2 2007/09/23 16:11:12 nanard Exp $
|
|
|
|
# MiniUPnP project
|
|
|
|
# author: Thomas Bernard
|
|
|
|
# website: http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
|
|
|
2012-03-14 02:45:45 +00:00
|
|
|
### BEGIN INIT INFO
|
|
|
|
# Provides: miniupnpd
|
|
|
|
# Required-Start: $remote_fs $syslog
|
|
|
|
# Required-Stop: $remote_fs $syslog
|
|
|
|
# Default-Start: 2 3 4 5
|
|
|
|
# Default-Stop: 0 1 6
|
|
|
|
# Short-Description: MiniUPnPd port-forwarding daemon
|
|
|
|
### END INIT INFO
|
|
|
|
|
2012-03-14 02:39:55 +00:00
|
|
|
set -e
|
|
|
|
|
2011-09-28 19:13:20 +00:00
|
|
|
MINIUPNPD=/usr/sbin/miniupnpd
|
|
|
|
ARGS='-f /etc/miniupnpd/miniupnpd.conf'
|
|
|
|
|
|
|
|
IPTABLES_CREATE=/etc/miniupnpd/iptables_init.sh
|
|
|
|
IPTABLES_REMOVE=/etc/miniupnpd/iptables_removeall.sh
|
|
|
|
|
|
|
|
test -f $MINIUPNPD || exit 0
|
|
|
|
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
|
|
|
|
case "$1" in
|
2012-03-14 02:30:31 +00:00
|
|
|
start)
|
|
|
|
log_daemon_msg "Starting miniupnpd" "miniupnpd"
|
|
|
|
$IPTABLES_CREATE > /dev/null 2>&1
|
|
|
|
start-stop-daemon --start --quiet --pidfile /var/run/miniupnpd.pid --startas $MINIUPNPD -- $ARGS $LSBNAMES
|
|
|
|
log_end_msg $?
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
log_daemon_msg "Stopping miniupnpd" "miniupnpd"
|
|
|
|
start-stop-daemon --stop --quiet --pidfile /var/run/miniupnpd.pid
|
|
|
|
log_end_msg $?
|
|
|
|
$IPTABLES_REMOVE > /dev/null 2>&1
|
|
|
|
;;
|
|
|
|
restart|reload|force-reload)
|
|
|
|
log_daemon_msg "Restarting miniupnpd" "miniupnpd"
|
|
|
|
start-stop-daemon --stop --retry 5 --quiet --pidfile /var/run/miniupnpd.pid
|
|
|
|
$IPTABLES_REMOVE > /dev/null 2>&1
|
|
|
|
$IPTABLES_CREATE > /dev/null 2>&1
|
|
|
|
start-stop-daemon --start --quiet --pidfile /var/run/miniupnpd.pid --startas $MINIUPNPD -- $ARGS $LSBNAMES
|
|
|
|
log_end_msg $?
|
|
|
|
;;
|
2012-03-14 02:39:55 +00:00
|
|
|
status)
|
|
|
|
status_of_proc /usr/sbin/miniupnpd miniupnpd
|
|
|
|
;;
|
2012-03-14 02:30:31 +00:00
|
|
|
*)
|
|
|
|
log_action_msg "Usage: /etc/init.d/miniupnpd {start|stop|restart|reload|force-reload}"
|
|
|
|
exit 2
|
|
|
|
;;
|
2011-09-28 19:13:20 +00:00
|
|
|
esac
|
|
|
|
exit 0
|