#!/bin/sh
### BEGIN INIT INFO
# Provides: wsdd
# Required-Start:	$syslog $local_fs $remote_fs 
# Required-Stop:	$syslog $local_fs $remote_fs 
# Default-Start:	2 3 4 5
# Default-Stop:		0 1 6
# Short-Description: Web Services Dynamic Discovery host daemon
### END INIT INFO

DAEMON=/usr/sbin/wsdd
DAEMON_NAME=wsdd

# Add any command line options for your daemon here
DAEMON_OPTS="--shortlog --chroot=/run/wsdd $WSDD_PARAMS"

# This next line determines what user the script runs as.
# Root generally not recommended but necessary if you are using the Raspberry Pi GPIO from Python.
DAEMON_USER=root

# The process ID of the script when it runs is stored here:
PIDFILE=/var/run/$DAEMON_NAME.pid

. /lib/lsb/init-functions

if test -f /etc/default/wsdd; then
	. /etc/default/wsdd 
fi
 # create folder for chroot
 
mkdir -p /run/wsdd
  
DESC="Web Services Dynamic Discovery host daemon"
    #python3 /usr/sbin/$DAEMON_NAME &
do_start () {
	log_daemon_msg "Starting $DESC" "$prog"
	start-stop-daemon --verbose --start --background -m --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS
	if [ $? -ne 0 ]; then
		log_end_msg 1
		exit 1
	fi
	if [ $? -eq 0 ]; then
		log_end_msg 0
	fi
	exit 0
}

do_stop () {
	log_daemon_msg "Stopping $DESC" "$prog"
	start-stop-daemon -K --pidfile $PIDFILE
	if [ $? -ne 0 ]; then
		log_end_msg 1
		exit 1
	fi
	if [ $? -eq 0 ]; then
		log_end_msg 0
	fi
}

case "$1" in

    start|stop)
        do_${1}
        ;;

    restart|reload|force-reload)
        do_stop
        do_start
        ;;

    status)
        status_of_proc "$DAEMON_NAME" "$DAEMON" && exit 0 || exit $?
        ;;

    *)
        echo "Usage: /etc/init.d/$DAEMON_NAME {start|stop|restart|status}"
        exit 1
        ;;

esac
exit 0
