summaryrefslogtreecommitdiff
path: root/keyexchange/isakmpd-20041012/debian/isakmpd.init
diff options
context:
space:
mode:
Diffstat (limited to 'keyexchange/isakmpd-20041012/debian/isakmpd.init')
-rw-r--r--keyexchange/isakmpd-20041012/debian/isakmpd.init32
1 files changed, 0 insertions, 32 deletions
diff --git a/keyexchange/isakmpd-20041012/debian/isakmpd.init b/keyexchange/isakmpd-20041012/debian/isakmpd.init
deleted file mode 100644
index 57de3d4..0000000
--- a/keyexchange/isakmpd-20041012/debian/isakmpd.init
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-#
-PATH=/bin:/usr/bin:/sbin:/usr/sbin
-DAEMON=/usr/sbin/isakmpd
-PIDFILE=/var/run/isakmpd.pid
-
-test -f $DAEMON || exit 0
-
-case "$1" in
- start)
- echo -n "Starting OpenBSD isakmpd: "
- start-stop-daemon --start --verbose --pidfile $PIDFILE --exec $DAEMON > /dev/null 2>&1
- echo "done"
- ;;
- stop)
- echo -n "Stopping OpenBSD isakmpd: "
- start-stop-daemon --stop --verbose --pidfile $PIDFILE --exec $DAEMON > /dev/null 2>&1
- echo "done"
- ;;
- restart|force-reload)
- echo -n "Restarting OpenBSD isakmpd: "
- start-stop-daemon --stop --verbose --pidfile $PIDFILE --exec $DAEMON > /dev/null 2>&1
- start-stop-daemon --start --verbose --pidfile $PIDFILE --exec $DAEMON > /dev/null 2>&1
- echo "done"
- ;;
- *)
- echo "Usage: /etc/init.d/isakmpd {start|stop|restart|force-reload}"
- exit 1
- ;;
-esac
-
-exit 0