67 lines
1.5 KiB
Bash
67 lines
1.5 KiB
Bash
#! /bin/sh
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: xl2tpd l2tpd
|
|
# Required-Start: $network $syslog
|
|
# Required-Stop: $network $syslog
|
|
# Should-Start: ipsec
|
|
# Should-Stop: ipsec
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: layer 2 tunelling protocol daemon
|
|
# Description: xl2tpd is usually used in conjunction with an ipsec
|
|
# daemon (such as openswan).
|
|
### END INIT INFO
|
|
|
|
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
|
|
DAEMON=/usr/sbin/xl2tpd
|
|
NAME=xl2tpd
|
|
DESC=xl2tpd
|
|
|
|
test -x $DAEMON || exit 0
|
|
|
|
# Include xl2tpd defaults if available
|
|
if [ -f /etc/default/xl2tpd ] ; then
|
|
. /etc/default/xl2tpd
|
|
fi
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
start)
|
|
echo -n "Starting $DESC: "
|
|
start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
|
|
--exec $DAEMON -- $DAEMON_OPTS
|
|
echo "$NAME."
|
|
;;
|
|
stop)
|
|
echo -n "Stopping $DESC: "
|
|
start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
|
|
--exec $DAEMON
|
|
echo "$NAME."
|
|
;;
|
|
force-reload)
|
|
# check wether $DAEMON is running. If so, restart
|
|
start-stop-daemon --stop --test --quiet --pidfile \
|
|
/var/run/$NAME.pid --exec $DAEMON \
|
|
&& $0 restart \
|
|
|| exit 0
|
|
;;
|
|
restart)
|
|
echo -n "Restarting $DESC: "
|
|
start-stop-daemon --stop --quiet --pidfile \
|
|
/var/run/$NAME.pid --exec $DAEMON
|
|
sleep 1
|
|
start-stop-daemon --start --quiet --pidfile \
|
|
/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS
|
|
echo "$NAME."
|
|
;;
|
|
*)
|
|
N=/etc/init.d/$NAME
|
|
echo "Usage: $N {start|stop|restart|force-reload}" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|