summaryrefslogtreecommitdiff
authorDenys Vlasenko <vda.linux@googlemail.com>2011-01-21 23:38:24 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2011-01-21 23:38:24 (GMT)
commit3a0f690dcd06ff693a0b76d764739425600ec1f1 (patch)
tree2c037e53c4a2c87c9b6cd4cd57f169baa1baf5c7
parente8f565c1eeba336fa13ce8216464c9daedd36f76 (diff)
downloadbusybox-3a0f690dcd06ff693a0b76d764739425600ec1f1.zip
busybox-3a0f690dcd06ff693a0b76d764739425600ec1f1.tar.gz
busybox-3a0f690dcd06ff693a0b76d764739425600ec1f1.tar.bz2
svlogd: extend usage text. +70 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat
-rw-r--r--include/usage.src.h7
-rw-r--r--runit/svlogd.c17
2 files changed, 17 insertions, 7 deletions
diff --git a/include/usage.src.h b/include/usage.src.h
index a4776a2..9300b3c 100644
--- a/include/usage.src.h
+++ b/include/usage.src.h
@@ -3538,13 +3538,6 @@ INSERT
"pause, cont, hup, alarm, interrupt, quit, 1, 2, term, kill: send\n" \
"STOP, CONT, HUP, ALRM, INT, QUIT, USR1, USR2, TERM, KILL signal to service" \
-#define svlogd_trivial_usage \
- "[-ttv] [-r C] [-R CHARS] [-l MATCHLEN] [-b BUFLEN] DIR..."
-#define svlogd_full_usage "\n\n" \
- "Continuously read log data from stdin, optionally\n" \
- "filter log messages, and write the data to one or more automatically\n" \
- "rotated logs" \
-
#define swapoff_trivial_usage \
"[-a] [DEVICE]"
#define swapoff_full_usage "\n\n" \
diff --git a/runit/svlogd.c b/runit/svlogd.c
index c3ff4e9..cfa20a7 100644
--- a/runit/svlogd.c
+++ b/runit/svlogd.c
@@ -125,6 +125,23 @@ log message, you can use a pattern like this instead
-*: *: pid *
*/
+//usage:#define svlogd_trivial_usage
+//usage: "[-ttv] [-r C] [-R CHARS] [-l MATCHLEN] [-b BUFLEN] DIR..."
+//usage:#define svlogd_full_usage "\n\n"
+//usage: "Continuously read log data from stdin and write to rotated log files in DIRs"
+//usage: "\n"
+//usage: "\n""DIR/config file modifies behavior:"
+//usage: "\n""sSIZE - when to rotate logs"
+//usage: "\n""nNUM - number of files to retain"
+/*usage: "\n""NNUM - min number files to retain" - confusing */
+/*usage: "\n""tSEC - rotate file if it get SEC seconds old" - confusing */
+//usage: "\n""!PROG - process rotated log with PROG"
+/*usage: "\n""uIPADDR - send log over UDP" - unsupported */
+/*usage: "\n""UIPADDR - send log over UDP and DONT log" - unsupported */
+/*usage: "\n""pPFX - prefix each line with PFX" - unsupported */
+//usage: "\n""+,-PATTERN - (de)select line for logging"
+//usage: "\n""E,ePATTERN - (de)select line for stderr"
+
#include <sys/poll.h>
#include <sys/file.h>
#include "libbb.h"