54 lines
804 B
Plaintext
54 lines
804 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
DAEMON="sysrepo-plugind"
|
||
|
EXECUTABLE="/usr/bin/$DAEMON"
|
||
|
|
||
|
SYSREPO_PLUGIND_ARGS=""
|
||
|
|
||
|
# shellcheck source=/dev/null
|
||
|
[ -r "/etc/default/$DAEMON" ] && . "/etc/default/$DAEMON"
|
||
|
|
||
|
start() {
|
||
|
printf 'Starting %s: ' "$DAEMON"
|
||
|
start-stop-daemon -S -q -x "$EXECUTABLE" \
|
||
|
-- $SYSREPO_PLUGIND_ARGS
|
||
|
status=$?
|
||
|
if [ "$status" -eq 0 ]; then
|
||
|
echo "OK"
|
||
|
else
|
||
|
echo "FAIL"
|
||
|
fi
|
||
|
return "$status"
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
printf 'Stopping %s: ' "$DAEMON"
|
||
|
start-stop-daemon -K -q -x "$EXECUTABLE"
|
||
|
status=$?
|
||
|
if [ "$status" -eq 0 ]; then
|
||
|
echo "OK"
|
||
|
else
|
||
|
echo "FAIL"
|
||
|
fi
|
||
|
return "$status"
|
||
|
}
|
||
|
|
||
|
restart() {
|
||
|
stop
|
||
|
sleep 1
|
||
|
start
|
||
|
}
|
||
|
|
||
|
reload() {
|
||
|
# we do not support real reload .. just restart
|
||
|
restart
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
start|stop|restart|reload)
|
||
|
"$1";;
|
||
|
*)
|
||
|
echo "Usage: $0 {start|stop|restart|reload}"
|
||
|
exit 1
|
||
|
esac
|