diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-04 20:10:51 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-04 20:10:51 +0200 |
commit | da929a95aace0e79fbc621af2ab03c76d74d5fcb (patch) | |
tree | 2b7dd63658eef78fde7604772d9815283c2c1cdf /runit/Config.src | |
parent | e4070cb0d7586037c6fcf0f0f00d8d5b97f649d3 (diff) | |
download | busybox-w32-da929a95aace0e79fbc621af2ab03c76d74d5fcb.tar.gz busybox-w32-da929a95aace0e79fbc621af2ab03c76d74d5fcb.tar.bz2 busybox-w32-da929a95aace0e79fbc621af2ab03c76d74d5fcb.zip |
mass renaming Kbuild -> Kbuild.src, Config.in -> Config.src
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'runit/Config.src')
-rw-r--r-- | runit/Config.src | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/runit/Config.src b/runit/Config.src new file mode 100644 index 000000000..422ca7517 --- /dev/null +++ b/runit/Config.src | |||
@@ -0,0 +1,83 @@ | |||
1 | # | ||
2 | # For a description of the syntax of this configuration file, | ||
3 | # see scripts/kbuild/config-language.txt. | ||
4 | # | ||
5 | |||
6 | menu "Runit Utilities" | ||
7 | |||
8 | config RUNSV | ||
9 | bool "runsv" | ||
10 | default n | ||
11 | help | ||
12 | runsv starts and monitors a service and optionally an appendant log | ||
13 | service. | ||
14 | |||
15 | config RUNSVDIR | ||
16 | bool "runsvdir" | ||
17 | default n | ||
18 | help | ||
19 | runsvdir starts a runsv process for each subdirectory, or symlink to | ||
20 | a directory, in the services directory dir, up to a limit of 1000 | ||
21 | subdirectories, and restarts a runsv process if it terminates. | ||
22 | |||
23 | config FEATURE_RUNSVDIR_LOG | ||
24 | bool "Enable scrolling argument log" | ||
25 | depends on RUNSVDIR | ||
26 | default n | ||
27 | help | ||
28 | Enable feature where second parameter of runsvdir holds last error | ||
29 | message (viewable via top/ps). Otherwise (feature is off | ||
30 | or no parameter), error messages go to stderr only. | ||
31 | |||
32 | config SV | ||
33 | bool "sv" | ||
34 | default n | ||
35 | help | ||
36 | sv reports the current status and controls the state of services | ||
37 | monitored by the runsv supervisor. | ||
38 | |||
39 | config SV_DEFAULT_SERVICE_DIR | ||
40 | string "Default directory for services" | ||
41 | default "/var/service" | ||
42 | depends on SV | ||
43 | help | ||
44 | Default directory for services. | ||
45 | Defaults to "/var/service" | ||
46 | |||
47 | config SVLOGD | ||
48 | bool "svlogd" | ||
49 | default n | ||
50 | help | ||
51 | svlogd continuously reads log data from its standard input, optionally | ||
52 | filters log messages, and writes the data to one or more automatically | ||
53 | rotated logs. | ||
54 | |||
55 | config CHPST | ||
56 | bool "chpst" | ||
57 | default n | ||
58 | help | ||
59 | chpst changes the process state according to the given options, and | ||
60 | execs specified program. | ||
61 | |||
62 | config SETUIDGID | ||
63 | bool "setuidgid" | ||
64 | help | ||
65 | Sets soft resource limits as specified by options | ||
66 | |||
67 | config ENVUIDGID | ||
68 | bool "envuidgid" | ||
69 | help | ||
70 | Sets $UID to account's uid and $GID to account's gid | ||
71 | |||
72 | config ENVDIR | ||
73 | bool "envdir" | ||
74 | help | ||
75 | Sets various environment variables as specified by files | ||
76 | in the given directory | ||
77 | |||
78 | config SOFTLIMIT | ||
79 | bool "softlimit" | ||
80 | help | ||
81 | Sets soft resource limits as specified by options | ||
82 | |||
83 | endmenu | ||