cae3a44b05
Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device. Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
568 B
Bash
39 lines
568 B
Bash
#!/bin/sh
|
|
|
|
NAME=domoticz
|
|
PIDFILE=/var/run/$NAME.pid
|
|
DAEMON=/opt/domoticz/$NAME
|
|
DAEMON_ARGS="-daemon -www 8080 -sslwww 443"
|
|
|
|
start() {
|
|
printf "Starting $NAME: "
|
|
start-stop-daemon -S -q -m -b -p $PIDFILE --exec $DAEMON -- $DAEMON_ARGS
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
stop() {
|
|
printf "Stopping $NAME: "
|
|
start-stop-daemon -K -q -p $PIDFILE
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|