#! /bin/sh
### BEGIN INIT INFO
# Provides:             start-hytem-api
# Required-Start:       networking
# Required-Stop:
# Default-Start:        2 3 4 5
# Default-Stop:         1
# Short-Description:    Start Hytem external API
### END INIT INFO
#

if [ "$1" = "start" ] && [ ! -f /reboot ]
then
	/usr/bin/run-hytem-api &
	exit 0
fi

