No, *here* is the patch.
Thanks,
James
diff -u isns-2.1-01+dfsg/debian/isns.init.d isns-2.1-01+dfsg/debian/isns.init.d
--- isns-2.1-01+dfsg/debian/isns.init.d
+++ isns-2.1-01+dfsg/debian/isns.init.d
@@ -29,13 +29,13 @@
case "$1" in
start)
echo -n "Starting $DESC: "
- start-stop-daemon --start --quiet --pidfile $PID_FILE \
+ start-stop-daemon --start --quiet --oknodo --pidfile $PID_FILE \
--exec $DAEMON -- $DAEMON_OPTS
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
- start-stop-daemon --stop --quiet --pidfile $PID_FILE \
+ start-stop-daemon --stop --quiet --oknodo --pidfile $PID_FILE \
--exec $DAEMON
echo "$NAME."
;;
@@ -58,17 +58,17 @@
# just the same as "restart" except that it does nothing if the
# daemon isn't already running.
# check wether $DAEMON is running. If so, restart
- start-stop-daemon --stop --test --quiet --pidfile \
+ start-stop-daemon --stop --test --quiet --oknodo --pidfile \
$PID_FILE --exec $DAEMON \
&& $0 restart \
|| exit 0
;;
restart)
echo -n "Restarting $DESC: "
- start-stop-daemon --stop --quiet --pidfile \
+ start-stop-daemon --stop --quiet --oknodo --pidfile \
$PID_FILE --exec $DAEMON
sleep 1
- start-stop-daemon --start --quiet --pidfile \
+ start-stop-daemon --start --quiet --oknodo --pidfile \
$PID_FILE --exec $DAEMON -- $DAEMON_OPTS
echo "$NAME."
;;