[4/5] busybox: change syslog default to log to a file
Submitted by Joshua Lock on Jan. 17, 2012, 6:59 p.m.
|
Patch ID: 19605
Details
Commit Message
@@ -1,7 +1,7 @@
# This configuration file is used by the busybox syslog init script,
# /etc/init.d/syslog[.busybox] to set syslog configuration at start time.
-DESTINATION=buffer # log destinations (buffer file remote)
+DESTINATION=file # log destinations (buffer file remote)
LOGFILE=/var/log/messages # where to log (file)
REMOTE=loghost:514 # where to log (syslog remote)
REDUCE=no # reduce-size logging
This changes the default in syslog-startup.conf to log messages to a file (/var/log/messages) because: a) we already mount /var/log as a volatile mount by default b) users are accustomed to looking at /var/log/messages as most distributions don't ship with logread Signed-off-by: Joshua Lock <josh@linux.intel.com> --- .../recipes-core/busybox/files/syslog-startup.conf | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)