#!/bin/sh
#
### BEGIN INIT INFO
# Provides:           isakmpd
# Required-Start:     $remote_fs $syslog
# Required-Stop:      $remote_fs $syslog
# Default-Start:      2 3 4 5
# Default-Stop:       0 1 6
# Short-Description:  Internet Key Exchange protocol daemon from OpenBSD
### END INIT INFO

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
