mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 16:07:42 +00:00
package/domoticz: rewrite init script
Follow new S02klogd template Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
d8df8cb984
commit
03046fa0e8
@ -1,38 +1,51 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
NAME=domoticz
|
DAEMON="domoticz"
|
||||||
PIDFILE=/var/run/$NAME.pid
|
PIDFILE="/var/run/$DAEMON.pid"
|
||||||
DAEMON=/opt/domoticz/$NAME
|
|
||||||
DAEMON_ARGS="-daemon -www 8080 -sslwww 443"
|
DOMOTICZ_ARGS="-daemon -www 8080 -sslwww 443"
|
||||||
|
|
||||||
|
[ -r "/etc/default/$DAEMON" ] && . "/etc/default/$DAEMON"
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
printf "Starting $NAME: "
|
printf 'Starting %s: ' "$DAEMON"
|
||||||
start-stop-daemon -S -q -m -b -p $PIDFILE --exec $DAEMON -- $DAEMON_ARGS
|
start-stop-daemon -b -m -S -q -p "$PIDFILE" -x "/opt/domoticz/$DAEMON" \
|
||||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
-- $DOMOTICZ_ARGS
|
||||||
|
status=$?
|
||||||
|
if [ "$status" -eq 0 ]; then
|
||||||
|
echo "OK"
|
||||||
|
else
|
||||||
|
echo "FAIL"
|
||||||
|
fi
|
||||||
|
return "$status"
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
printf "Stopping $NAME: "
|
printf 'Stopping %s: ' "$DAEMON"
|
||||||
start-stop-daemon -K -q -p $PIDFILE
|
start-stop-daemon -K -q -p "$PIDFILE"
|
||||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
status=$?
|
||||||
|
if [ "$status" -eq 0 ]; then
|
||||||
|
rm -f "$PIDFILE"
|
||||||
|
echo "OK"
|
||||||
|
else
|
||||||
|
echo "FAIL"
|
||||||
|
fi
|
||||||
|
return "$status"
|
||||||
}
|
}
|
||||||
|
|
||||||
restart() {
|
restart() {
|
||||||
stop
|
stop
|
||||||
|
sleep 1
|
||||||
start
|
start
|
||||||
}
|
}
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
start)
|
start|stop|restart)
|
||||||
start
|
"$1";;
|
||||||
;;
|
reload)
|
||||||
stop)
|
# Restart, since there is no true "reload" feature.
|
||||||
stop
|
restart;;
|
||||||
;;
|
|
||||||
restart|reload)
|
|
||||||
restart
|
|
||||||
;;
|
|
||||||
*)
|
*)
|
||||||
echo "Usage: $0 {start|stop|restart}"
|
echo "Usage: $0 {start|stop|restart|reload}"
|
||||||
exit 1
|
exit 1
|
||||||
esac
|
esac
|
||||||
|
|
||||||
exit $?
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user