#!/bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/tinyerp-server
NAME=tinyerp-server
DESC=tinyerp-server

test -x $DAEMON || exit 0

# Include tinyerp-server defaults
. /etc/default/tinyerp-server

set -e

case "$1" in
	start)
		echo -n "Starting $DESC: "

		start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
			--chuid $USER --background --make-pidfile \
			--exec $DAEMON -- $DAEMON_OPTS

		echo "$NAME."
		;;

	stop)
		echo -n "Stopping $DESC: "

		start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
			--oknodo

		echo "$NAME."
		;;

	restart|force-reload)
		echo -n "Restarting $DESC: "

		start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
			--oknodo

		sleep 1

		start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
			--chuid $USER --background --make-pidfile \
			--exec $DAEMON -- $DAEMON_OPTS

		echo "$NAME."
		;;

	*)
		N=/etc/init.d/$NAME
		echo "Usage: $N {start|stop|restart|force-reload}" >&2
		exit 1
		;;
esac

exit 0
