File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / miniupnpd / linux / miniupnpd.init.d.script
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 00:32:35 2013 UTC (10 years, 10 months ago) by misho
Branches: miniupnpd, elwix, MAIN
CVS tags: v1_8p0, v1_8, HEAD
1.8

#!/bin/sh
# $Id: miniupnpd.init.d.script,v 1.1.1.2 2013/07/22 00:32:35 misho Exp $
# MiniUPnP project
# author: Thomas Bernard
# website: http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/

### 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

set -e

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
  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 $?
	;;
  status)
	status_of_proc /usr/sbin/miniupnpd miniupnpd
	;;
  *)
	log_action_msg "Usage: /etc/init.d/miniupnpd {start|stop|restart|reload|force-reload}"
	exit 2
	;;
esac
exit 0

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>