summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2020-12-12 21:17:50 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2020-12-12 21:19:14 (EST)
commite57503a84591f94c970c5c76a22808cc22152194 (patch)
tree5190ac492bc4957d329118570871f287f0d0545f
parent5142bd58855c50ef13bbb91f5735feab94e55c48 (diff)
/etc/init.d/syslog: Rename to /etc/init.d/syslogd
-rw-r--r--changelog2
-rw-r--r--scripts2
-rwxr-xr-xsrc.etc/init.d/syslogd (renamed from src.etc/init.d/syslog)4
3 files changed, 5 insertions, 3 deletions
diff --git a/changelog b/changelog
index 880ca4b..f5f7952 100644
--- a/changelog
+++ b/changelog
@@ -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
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
}