diff options
-rw-r--r-- | changelog | 2 | ||||
-rw-r--r-- | scripts | 2 | ||||
-rwxr-xr-x | src.etc/init.d/syslogd (renamed from src.etc/init.d/syslog) | 4 |
3 files changed, 5 insertions, 3 deletions
@@ -11,6 +11,8 @@ busybox (1.32.0-3) trunk * </etc/resolv.conf> is now a symbolic link to </var/run/resolv.conf>. This allows </usr/share/udhcpc/default.script> to configure name resolution on a read-only root file system. + * </etc/init.d/syslog> is now named </etc/init.d/syslogd> and no + longer sets the maximum log size (since rotation may be disabled). -- Patrick McDermott <patrick.mcdermott@libiquity.com> Sat, 12 Dec 2020 10:09:01 -0500 @@ -9,7 +9,7 @@ FEATURE_MOUNT_FLAGS mounttmpfs S03 K97 IFUP networking S20 IFDOWN networking K80 NTPD ntpd enabled -SYSLOGD syslog enabled +SYSLOGD syslogd enabled TELNETD telnetd disabled - boottime enabled - rc.local enabled diff --git a/src.etc/init.d/syslog b/src.etc/init.d/syslogd index 100b97f..a480c3b 100755 --- a/src.etc/init.d/syslog +++ b/src.etc/init.d/syslogd @@ -5,12 +5,12 @@ STOP='70' start() { - log 'Starting syslog' + log 'Starting system logging daemon' start-stop-daemon -S -q -x /sbin/syslogd } stop() { - log 'Stopping syslog' + log 'Stopping system logging daemon' start-stop-daemon -K -q -p /var/run/syslogd.pid } |