diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-12 21:14:00 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-12 21:14:00 (EST) |
commit | 5142bd58855c50ef13bbb91f5735feab94e55c48 (patch) | |
tree | 8eabd56d838ed05b8eaca4668cbd8e9cc5eb945c | |
parent | 701271854468d355e026b6078a0fe13a0a564787 (diff) |
/etc/init.d/syslog: Don't pass -s to syslogd
Rotation may be disabled.
-rwxr-xr-x | src.etc/init.d/syslog | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src.etc/init.d/syslog b/src.etc/init.d/syslog index 32e4bd6..100b97f 100755 --- a/src.etc/init.d/syslog +++ b/src.etc/init.d/syslog @@ -1,15 +1,12 @@ #!/bin/sh /etc/rc.common -SYSLOG_ROTATE_SIZE=65536 - START='40' STOP='70' start() { log 'Starting syslog' - start-stop-daemon -S -q -x /sbin/syslogd -- \ - -s "${SYSLOG_ROTATE_SIZE}" + start-stop-daemon -S -q -x /sbin/syslogd } stop() |