Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Debian Utilities" |
| 7 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 8 | config MKTEMP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 9 | bool "mktemp" |
| 10 | default n |
| 11 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 12 | mktemp is used to create unique temporary files |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 13 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 14 | config PIPE_PROGRESS |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 15 | bool "pipe_progress" |
| 16 | default n |
| 17 | help |
| 18 | Display a dot to indicate pipe activity. |
| 19 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 20 | config RUN_PARTS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 21 | bool "run-parts" |
| 22 | default n |
| 23 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 24 | run-parts is a utility designed to run all the scripts in a directory. |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 25 | |
| 26 | It is useful to set up a directory like cron.daily, where you need to |
| 27 | execute all the scripts in that directory. |
| 28 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 29 | In this implementation of run-parts some features (such as report mode) |
Eric Andersen | dc19af4 | 2003-08-06 09:43:09 +0000 | [diff] [blame] | 30 | are not implemented. |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 31 | |
| 32 | Unless you know that run-parts is used in some of your scripts |
| 33 | you can safely say N here. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 34 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 35 | config FEATURE_RUN_PARTS_LONG_OPTIONS |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 36 | bool "Enable long options" |
| 37 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 38 | depends on RUN_PARTS && GETOPT_LONG |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 39 | help |
| 40 | Support long options for the run-parts applet. |
| 41 | |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 42 | config FEATURE_RUN_PARTS_FANCY |
| 43 | bool "Support additional arguments" |
| 44 | default n |
| 45 | depends on RUN_PARTS |
| 46 | help |
| 47 | Support additional options: |
| 48 | -l --list print the names of the all matching files (not |
| 49 | limited to executables), but don't actually run them. |
| 50 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 51 | config START_STOP_DAEMON |
Eric Andersen | a1ed06b | 2003-07-26 09:16:00 +0000 | [diff] [blame] | 52 | bool "start-stop-daemon" |
Denis Vlasenko | e7b43cf | 2008-02-19 23:42:22 +0000 | [diff] [blame^] | 53 | default n |
Eric Andersen | a1ed06b | 2003-07-26 09:16:00 +0000 | [diff] [blame] | 54 | help |
| 55 | start-stop-daemon is used to control the creation and |
| 56 | termination of system-level processes, usually the ones |
| 57 | started during the startup of the system. |
| 58 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 59 | config FEATURE_START_STOP_DAEMON_FANCY |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 60 | bool "Support additional arguments" |
Denis Vlasenko | e7b43cf | 2008-02-19 23:42:22 +0000 | [diff] [blame^] | 61 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 62 | depends on START_STOP_DAEMON |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 63 | help |
| 64 | Support additional arguments. |
| 65 | -o|--oknodo ignored since we exit with 0 anyway |
| 66 | -v|--verbose |
| 67 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 68 | config FEATURE_START_STOP_DAEMON_LONG_OPTIONS |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 69 | bool "Enable long options" |
| 70 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 71 | depends on START_STOP_DAEMON && GETOPT_LONG |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 72 | help |
| 73 | Support long options for the start-stop-daemon applet. |
| 74 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 75 | config WHICH |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 76 | bool "which" |
| 77 | default n |
| 78 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 79 | which is used to find programs in your PATH and |
| 80 | print out their pathnames. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 81 | |
| 82 | endmenu |
| 83 | |