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 | |
| 8 | config CONFIG_MKTEMP |
| 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 | |
| 14 | config CONFIG_READLINK |
| 15 | bool "readlink" |
| 16 | default n |
| 17 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 18 | This program reads a symbolic link and returns the name |
| 19 | of the file it points to |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 20 | |
| 21 | config CONFIG_RUN_PARTS |
| 22 | bool "run-parts" |
| 23 | default n |
| 24 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 25 | 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] | 26 | |
| 27 | It is useful to set up a directory like cron.daily, where you need to |
| 28 | execute all the scripts in that directory. |
| 29 | |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 30 | This implementation of run-parts does not accept long options, and |
| 31 | some features (such as report mode) are not implemented. |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 32 | |
| 33 | Unless you know that run-parts is used in some of your scripts |
| 34 | you can safely say N here. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 35 | |
Eric Andersen | a1ed06b | 2003-07-26 09:16:00 +0000 | [diff] [blame] | 36 | config CONFIG_START_STOP_DAEMON |
| 37 | bool "start-stop-daemon" |
| 38 | default y |
| 39 | help |
| 40 | start-stop-daemon is used to control the creation and |
| 41 | termination of system-level processes, usually the ones |
| 42 | started during the startup of the system. |
| 43 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 44 | config CONFIG_WHICH |
| 45 | bool "which" |
| 46 | default n |
| 47 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 48 | which is used to find programs in your PATH and |
| 49 | print out their pathnames. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 50 | |
| 51 | endmenu |
| 52 | |