mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
syslog-ng: rewrite init script
- Rename it to S01syslog-ng to make every init script be called the same as the executable it starts. - Indent with tabs, not spaces. - Do not kill syslog-ng in "reload". Send a SIGHUP signal, instructing it to perform a re-initialization. - Support a /etc/default/syslog-ng configuration file. Signed-off-by: Carlos Santos <casantos@datacom.com.br> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
b3c76a435b
commit
ff349069b0
@ -1,38 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
start() {
|
|
||||||
printf "Starting syslog-ng daemon: "
|
|
||||||
start-stop-daemon -S -q -p /var/run/syslog-ng.pid \
|
|
||||||
-x /usr/sbin/syslog-ng -- --pidfile /var/run/syslog-ng.pid
|
|
||||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
||||||
}
|
|
||||||
|
|
||||||
stop() {
|
|
||||||
printf "Stopping syslog-ng daemon: "
|
|
||||||
start-stop-daemon -K -q -p /var/run/syslog-ng.pid \
|
|
||||||
-x /usr/sbin/syslog-ng
|
|
||||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
||||||
}
|
|
||||||
|
|
||||||
restart() {
|
|
||||||
stop
|
|
||||||
sleep 1
|
|
||||||
start
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
start
|
|
||||||
;;
|
|
||||||
stop)
|
|
||||||
stop
|
|
||||||
;;
|
|
||||||
restart|reload)
|
|
||||||
restart
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Usage: $0 {start|stop|restart}"
|
|
||||||
exit 1
|
|
||||||
esac
|
|
||||||
|
|
||||||
exit $?
|
|
62
package/syslog-ng/S01syslog-ng
Normal file
62
package/syslog-ng/S01syslog-ng
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
DAEMON="syslog-ng"
|
||||||
|
PIDFILE="/var/run/$DAEMON.pid"
|
||||||
|
|
||||||
|
SYSLOG_NG_ARGS=""
|
||||||
|
|
||||||
|
# shellcheck source=/dev/null
|
||||||
|
[ -r "/etc/default/$DAEMON" ] && . "/etc/default/$DAEMON"
|
||||||
|
|
||||||
|
start() {
|
||||||
|
printf 'Starting %s: ' "$DAEMON"
|
||||||
|
# shellcheck disable=SC2086 # we need the word splitting
|
||||||
|
start-stop-daemon -S -q -p "$PIDFILE" -x "/usr/sbin/$DAEMON" \
|
||||||
|
-- $SYSLOG_NG_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"
|
||||||
|
status=$?
|
||||||
|
if [ "$status" -eq 0 ]; then
|
||||||
|
echo "OK"
|
||||||
|
else
|
||||||
|
echo "FAIL"
|
||||||
|
fi
|
||||||
|
return "$status"
|
||||||
|
}
|
||||||
|
|
||||||
|
restart() {
|
||||||
|
stop
|
||||||
|
sleep 1
|
||||||
|
start
|
||||||
|
}
|
||||||
|
|
||||||
|
# SIGHUP makes syslog-ng reload its configuration
|
||||||
|
reload() {
|
||||||
|
printf 'Reloading %s: ' "$DAEMON"
|
||||||
|
start-stop-daemon -K -s HUP -q -p "$PIDFILE"
|
||||||
|
status=$?
|
||||||
|
if [ "$status" -eq 0 ]; then
|
||||||
|
echo "OK"
|
||||||
|
else
|
||||||
|
echo "FAIL"
|
||||||
|
fi
|
||||||
|
return "$status"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
start|stop|restart|reload)
|
||||||
|
"$1";;
|
||||||
|
*)
|
||||||
|
echo "Usage: $0 {start|stop|restart|reload}"
|
||||||
|
exit 1
|
||||||
|
esac
|
@ -93,8 +93,8 @@ SYSLOG_NG_CONF_OPTS += --disable-systemd
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
define SYSLOG_NG_INSTALL_INIT_SYSV
|
define SYSLOG_NG_INSTALL_INIT_SYSV
|
||||||
$(INSTALL) -m 0755 -D package/syslog-ng/S01logging \
|
$(INSTALL) -m 0755 -D package/syslog-ng/S01syslog-ng \
|
||||||
$(TARGET_DIR)/etc/init.d/S01logging
|
$(TARGET_DIR)/etc/init.d/S01syslog-ng
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# By default syslog-ng installs a number of sample configuration
|
# By default syslog-ng installs a number of sample configuration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user