4 # Required-Start: $remote_fs $syslog
5 # Required-Stop: $remote_fs $syslog
6 # Default-Start: 2 3 4 5
10 # l2tpns Based on skeleton example file.
12 # Written by Miquel van Smoorenburg <miquels@cistron.nl>.
13 # Modified for Debian GNU/Linux
14 # by Ian Murdock <imurdock@gnu.ai.mit.edu>.
17 PATH=/sbin:/bin:/usr/sbin:/usr/bin
18 DAEMON=/usr/sbin/l2tpns
23 test -f $DAEMON || exit 0
29 echo -n "Starting $DESC: "
30 start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
31 --exec $DAEMON -- $ARGS
35 echo -n "Stopping $DESC: "
36 start-stop-daemon --oknodo --stop --signal 3 --quiet \
37 --pidfile /var/run/$NAME.pid --exec $DAEMON -- $ARGS
42 # If the daemon can reload its config files on the fly
43 # for example by sending it SIGHUP, do it here.
45 # If the daemon responds to changes in its config file
46 # directly anyway, make this a do-nothing entry.
48 echo "Reloading $DESC configuration files."
49 start-stop-daemon --stop --signal 1 --quiet --pidfile \
50 /var/run/$NAME.pid --exec $DAEMON -- $ARGS
54 # If the "reload" option is implemented, move the "force-reload"
55 # option to the "reload" entry above. If not, "force-reload" is
56 # just the same as "restart".
58 echo -n "Restarting $DESC: "
59 start-stop-daemon --stop --quiet --pidfile \
60 /var/run/$NAME.pid --exec $DAEMON -- $ARGS
62 start-stop-daemon --start --quiet --pidfile \
63 /var/run/$NAME.pid --exec $DAEMON -- $ARGS
68 # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
69 echo "Usage: $N {start|stop|restart|force-reload}" >&2