mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 16:07:42 +00:00
package/radvd: improve startup script
- Add start, stop and restart/reload options, following the logic used in other init scripts (e.g. S01syslogd). - Do nothing if /etc/radvd.conf does not exist instead of printing an error message. It is valid to install radvd without a configuration file. The daemon may be started later by another service with a configuration created at run-time. - Print an error message if the kernel does not support IPv6 forwarding, which is required by radvd. Signed-off-by: Carlos Santos <unixmania@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
d7d82a318b
commit
711ae58a53
@ -1,18 +1,59 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
RADVD=/usr/sbin/radvd
|
DAEMON="radvd"
|
||||||
|
PIDFILE="/var/run/$DAEMON.pid"
|
||||||
|
|
||||||
echo "1" > /proc/sys/net/ipv6/conf/all/forwarding
|
RADVD_ARGS="-m syslog"
|
||||||
|
|
||||||
printf "Starting radvd: "
|
# shellcheck source=/dev/null
|
||||||
if [ ! -x "${RADVD}" ]; then
|
[ -r "/etc/default/$DAEMON" ] && . "/etc/default/$DAEMON"
|
||||||
echo "missing"
|
|
||||||
|
[ -f /etc/radvd.conf ] || exit 0
|
||||||
|
|
||||||
|
[ -f /proc/sys/net/ipv6/conf/all/forwarding ] || {
|
||||||
|
echo "Error: radvd requires IPv6 forwarding support."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
}
|
||||||
|
|
||||||
if ${RADVD} ; then
|
start() {
|
||||||
echo "done"
|
printf 'Starting %s: ' "$DAEMON"
|
||||||
else
|
echo "1" > /proc/sys/net/ipv6/conf/all/forwarding
|
||||||
echo "failed"
|
# shellcheck disable=SC2086 # we need the word splitting
|
||||||
|
start-stop-daemon -S -q -p "$PIDFILE" -x "/usr/sbin/$DAEMON" \
|
||||||
|
-- $RADVD_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 -p "$PIDFILE" -x "/usr/sbin/$DAEMON"
|
||||||
|
status=$?
|
||||||
|
if [ "$status" -eq 0 ]; then
|
||||||
|
echo "OK"
|
||||||
|
else
|
||||||
|
echo "FAIL"
|
||||||
|
fi
|
||||||
|
return "$status"
|
||||||
|
}
|
||||||
|
|
||||||
|
restart() {
|
||||||
|
stop
|
||||||
|
sleep 1
|
||||||
|
start
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
start|stop)
|
||||||
|
"$1";;
|
||||||
|
restart|reload)
|
||||||
|
restart;;
|
||||||
|
*)
|
||||||
|
echo "Usage: $0 {start|stop|restart|reload}"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
esac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user