--- a/rc.wgnd-watch.in Wed Feb 15 12:45:01 2017 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,40 +0,0 @@
-#! /bin/sh
-
-### BEGIN INIT INFO
-# Provides: wgnd-watch
-# Required-Start: $local_fs $remote_fs $syslog $named $network $time
-# Required-Stop: $local_fs $remote_fs $syslog $named $network
-# Should-Start:
-# Should-Stop:
-# Default-Start: 2 3 4 5
-# Default-Stop: 0 1 6
-# Short-Description: Start/Stop the wgnd-watch daemon
-### END INIT INFO
-
-DAEMON=__sbindir__/wgnd-watch
-PIDFILE=/var/run/`basename $DAEMON`.pid
-
-. /lib/lsb/init-functions
-
-case $1 in
-
- start)
- start-stop-daemon -v --start --pidfile $PIDFILE --startas $DAEMON
- ;;
-
- stop)
- start-stop-daemon -v --stop --retry 30 --pidfile $PIDFILE
- ;;
-
- force-reload|restart) echo "Restarting $NAME..."
- $0 stop
- $0 start
- ;;
-
- *)
- echo "Usage: $0 {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0