From e57503a84591f94c970c5c76a22808cc22152194 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 12 Dec 2020 21:17:50 -0500 Subject: /etc/init.d/syslog: Rename to /etc/init.d/syslogd --- diff --git a/changelog b/changelog index 880ca4b..f5f7952 100644 --- a/changelog +++ b/changelog @@ -11,6 +11,8 @@ busybox (1.32.0-3) trunk * is now a symbolic link to . This allows to configure name resolution on a read-only root file system. + * is now named and no + longer sets the maximum log size (since rotation may be disabled). -- Patrick McDermott Sat, 12 Dec 2020 10:09:01 -0500 diff --git a/scripts b/scripts index 1023750..e77549e 100644 --- a/scripts +++ b/scripts @@ -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 } -- cgit v0.9.1