busybox: Clean up syslog.conf file.
authorPaul Sokolovsky <pmiscml@gmail.com>
Mon, 23 Apr 2007 07:16:51 +0000 (07:16 +0000)
committerPaul Sokolovsky <pmiscml@gmail.com>
Mon, 23 Apr 2007 07:16:51 +0000 (07:16 +0000)
* Typo fixes.
* Order options in some logical sequence.
* Make clear which option applies to which logging destination.
* Remove bogus comments about file log rotation being "incompatible with
busybox" (works at least with 1.2.1).

packages/busybox/busybox_1.2.1.bb
packages/busybox/files/syslog.conf

index fb26407..34aa5da 100644 (file)
@@ -1,6 +1,6 @@
 require busybox.inc
 
-PR = "r11"
+PR = "r12"
 
 SRC_URI += "file://wget-long-options.patch;patch=1 \
           file://df_rootfs.patch;patch=1 \
index d4a0e02..fc7ff8b 100644 (file)
@@ -1,9 +1,9 @@
 DESTINATION="buffer"           # log destinations (buffer file remote)
-MARKINT=20                     # intervall between --mark-- entries
-LOGFILE=/var/log/messages      # where to log (file)
-REMOTE=loghost:514             # where to log (syslog remote)
-REDUCE=no                      # reduce-size logging
-#ROTATESIZE=0                  # rotate log if grown beyond X [kByte] (incompatible with busybox)
-#ROTATEGENS=3                  # keep X generations of rotated logs (incompatible with busybox)
-BUFFERSIZE=64                  # size of circular buffer [kByte]
+MARKINT=20                     # interval between --mark-- entries [min]
+REDUCE=no                      # reduced-size logging
+BUFFERSIZE=64                  # buffer: size of circular buffer [kByte]
+LOGFILE=/var/log/messages      # file: where to log
+ROTATESIZE=32                  # file: rotate log if grown beyond X [kByte] (busybox 1.2+)
+ROTATEGENS=1                   # file: keep X generations of rotated logs (busybox 1.2+)
+REMOTE=loghost:514             # remote: where to log
 FOREGROUND=no                  # run in foreground (don't use!)