| Submitter | Joshua Lock |
|---|---|
| Date | Jan. 17, 2012, 6:59 p.m. |
| Message ID | <d3cafd54bd36ccfa3e8600e7f75578fdc6fb8aed.1326826646.git.josh@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/19605/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-core/busybox/files/syslog-startup.conf b/meta/recipes-core/busybox/files/syslog-startup.conf index 83b86f2..553490b 100644 --- a/meta/recipes-core/busybox/files/syslog-startup.conf +++ b/meta/recipes-core/busybox/files/syslog-startup.conf @@ -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(-)