#!/bin/sh

# Source function library
. /etc/init.d/functions

NAME=tee-supplicant
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DESC="OP-TEE Supplicant"

DAEMON=/usr/sbin/$NAME

test -f $DAEMON || exit 0

test -f /etc/default/$NAME && . /etc/default/$NAME
test -f /etc/default/rcS && . /etc/default/rcS

SSD_OPTIONS="--oknodo --quiet --exec $DAEMON -- -d $OPTARGS"

set -e

case $1 in
    start)
	    echo -n "Starting $DESC: "
	    start-stop-daemon --start $SSD_OPTIONS
        echo "${DAEMON##*/}."
        ;;
    stop)
	    echo -n "Stopping $DESC: "
	    start-stop-daemon --stop $SSD_OPTIONS
        echo "${DAEMON##*/}."
        ;;
    restart|force-reload)
	    $0 stop
	    sleep 1
	    $0 start
        ;;
    status)
        status ${DAEMON} || exit $?
        ;;
    *)
        echo "Usage: $0 {start|stop|restart|force-reload|status}" >&2
        exit 1
        ;;
esac

exit 0
