busybox: Make S01logging source a default file
authorNicolas Cavallari <nicolas.cavallari@green-communications.fr>
Mon, 7 Mar 2016 09:48:17 +0000 (10:48 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Wed, 9 Mar 2016 22:07:31 +0000 (23:07 +0100)
The default syslog parameters are to keep only 200-400 KiB of logs,
which is very few if there is a spammy daemon on the system, or a daemon
that fails and then spams errors that hides the original problem.

Make S01logging source a /etc/default/logging file where these
parameters can be overridden.

Signed-off-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/busybox/S01logging

index a72c69d27d2693f60cef1a598df15cc0a8f7acb5..4632a4cc9971e1f899fabef3d7a09cf527f54fe9 100644 (file)
@@ -3,10 +3,14 @@
 # Start logging
 #
 
+SYSLOGD_ARGS=-n
+KLOGD_ARGS=-n
+[ -r /etc/default/logging ] && . /etc/default/logging
+
 start() {
        printf "Starting logging: "
-       start-stop-daemon -b -S -q -m -p /var/run/syslogd.pid --exec /sbin/syslogd -- -n
-       start-stop-daemon -b -S -q -m -p /var/run/klogd.pid --exec /sbin/klogd -- -n
+       start-stop-daemon -b -S -q -m -p /var/run/syslogd.pid --exec /sbin/syslogd -- $SYSLOGD_ARGS
+       start-stop-daemon -b -S -q -m -p /var/run/klogd.pid --exec /sbin/klogd -- $KLOGD_ARGS
        echo "OK"
 }