diff options
Diffstat (limited to 'runit/svlogd.c')
-rw-r--r-- | runit/svlogd.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/runit/svlogd.c b/runit/svlogd.c index c080b9acc..dbe8df65c 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c | |||
@@ -26,7 +26,6 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ | 28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ |
29 | /* TODO: depends on runit_lib.c - review and reduce/eliminate */ | ||
30 | 29 | ||
31 | /* | 30 | /* |
32 | Config files | 31 | Config files |
@@ -125,6 +124,18 @@ log message, you can use a pattern like this instead | |||
125 | -*: *: pid * | 124 | -*: *: pid * |
126 | */ | 125 | */ |
127 | 126 | ||
127 | //config:config SVLOGD | ||
128 | //config: bool "svlogd" | ||
129 | //config: default y | ||
130 | //config: help | ||
131 | //config: svlogd continuously reads log data from its standard input, optionally | ||
132 | //config: filters log messages, and writes the data to one or more automatically | ||
133 | //config: rotated logs. | ||
134 | |||
135 | //applet:IF_SVLOGD(APPLET(svlogd, BB_DIR_USR_SBIN, BB_SUID_DROP)) | ||
136 | |||
137 | //kbuild:lib-$(CONFIG_SVLOGD) += svlogd.o | ||
138 | |||
128 | //usage:#define svlogd_trivial_usage | 139 | //usage:#define svlogd_trivial_usage |
129 | //usage: "[-ttv] [-r C] [-R CHARS] [-l MATCHLEN] [-b BUFLEN] DIR..." | 140 | //usage: "[-ttv] [-r C] [-R CHARS] [-l MATCHLEN] [-b BUFLEN] DIR..." |
130 | //usage:#define svlogd_full_usage "\n\n" | 141 | //usage:#define svlogd_full_usage "\n\n" |