aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2024-04-20 10:39:15 -0500
committerRob Landley <rob@landley.net>2024-04-20 10:39:15 -0500
commit0ccf2a791f773cd0c6ac624678d3cdd8d2d5b5e4 (patch)
tree11eff142167ba0973fcfcfed8d8d0c7fc7e1567b
parent7c6aecd477a9b898df981197088c9e1d5775fe9c (diff)
downloadtoybox-0ccf2a791f773cd0c6ac624678d3cdd8d2d5b5e4.tar.gz
Indent the help text block.
-rw-r--r--toys/pending/syslogd.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/toys/pending/syslogd.c b/toys/pending/syslogd.c
index d80bea0e..43ccd9b2 100644
--- a/toys/pending/syslogd.c
+++ b/toys/pending/syslogd.c
@@ -11,25 +11,25 @@ config SYSLOGD
bool "syslogd"
default n
help
- usage: syslogd [-a socket] [-O logfile] [-f config file] [-m interval]
- [-p socket] [-s SIZE] [-b N] [-R HOST] [-l N] [-nSLKD]
-
- System logging utility
-
- -a Extra unix socket for listen
- -O FILE Default log file <DEFAULT: /var/log/messages>
- -f FILE Config file <DEFAULT: /etc/syslog.conf>
- -p Alternative unix domain socket <DEFAULT : /dev/log>
- -n Avoid auto-backgrounding
- -S Smaller output
- -m MARK interval <DEFAULT: 20 minutes> (RANGE: 0 to 71582787)
- -R HOST Log to IP or hostname on PORT (default PORT=514/UDP)"
- -L Log locally and via network (default is network only if -R)"
- -s SIZE Max size (KB) before rotation (default:200KB, 0=off)
- -b N rotated logs to keep (default:1, max=99, 0=purge)
- -K Log to kernel printk buffer (use dmesg to read it)
- -l N Log only messages more urgent than prio(default:8 max:8 min:1)
- -D Drop duplicates
+ usage: syslogd [-a socket] [-O logfile] [-f config file] [-m interval]
+ [-p socket] [-s SIZE] [-b N] [-R HOST] [-l N] [-nSLKD]
+
+ System logging utility
+
+ -a Extra unix socket for listen
+ -O FILE Default log file <DEFAULT: /var/log/messages>
+ -f FILE Config file <DEFAULT: /etc/syslog.conf>
+ -p Alternative unix domain socket <DEFAULT : /dev/log>
+ -n Avoid auto-backgrounding
+ -S Smaller output
+ -m MARK interval <DEFAULT: 20 minutes> (RANGE: 0 to 71582787)
+ -R HOST Log to IP or hostname on PORT (default PORT=514/UDP)"
+ -L Log locally and via network (default is network only if -R)"
+ -s SIZE Max size (KB) before rotation (default:200KB, 0=off)
+ -b N rotated logs to keep (default:1, max=99, 0=purge)
+ -K Log to kernel printk buffer (use dmesg to read it)
+ -l N Log only messages more urgent than prio(default:8 max:8 min:1)
+ -D Drop duplicates
*/
#define FOR_syslogd