[20] | 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 MKTEMP |
---|
| 9 | bool "mktemp" |
---|
| 10 | default n |
---|
| 11 | help |
---|
| 12 | mktemp is used to create unique temporary files |
---|
| 13 | |
---|
| 14 | config PIPE_PROGRESS |
---|
| 15 | bool "pipe_progress" |
---|
| 16 | default n |
---|
| 17 | help |
---|
| 18 | Display a dot to indicate pipe activity. |
---|
| 19 | |
---|
| 20 | config RUN_PARTS |
---|
| 21 | bool "run-parts" |
---|
| 22 | default n |
---|
| 23 | help |
---|
| 24 | run-parts is a utility designed to run all the scripts in a directory. |
---|
| 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 | |
---|
| 29 | In this implementation of run-parts some features (such as report mode) |
---|
| 30 | are not implemented. |
---|
| 31 | |
---|
| 32 | Unless you know that run-parts is used in some of your scripts |
---|
| 33 | you can safely say N here. |
---|
| 34 | |
---|
| 35 | config FEATURE_RUN_PARTS_LONG_OPTIONS |
---|
| 36 | bool "Enable long options" |
---|
| 37 | default n |
---|
| 38 | depends on RUN_PARTS && GETOPT_LONG |
---|
| 39 | help |
---|
| 40 | Support long options for the run-parts applet. |
---|
| 41 | |
---|
| 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 | |
---|
| 51 | config START_STOP_DAEMON |
---|
| 52 | bool "start-stop-daemon" |
---|
| 53 | default y |
---|
| 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 | |
---|
| 59 | config FEATURE_START_STOP_DAEMON_FANCY |
---|
| 60 | bool "Support additional arguments" |
---|
| 61 | default y |
---|
| 62 | depends on START_STOP_DAEMON |
---|
| 63 | help |
---|
| 64 | Support additional arguments. |
---|
| 65 | -o|--oknodo ignored since we exit with 0 anyway |
---|
| 66 | -v|--verbose |
---|
| 67 | |
---|
| 68 | config FEATURE_START_STOP_DAEMON_LONG_OPTIONS |
---|
| 69 | bool "Enable long options" |
---|
| 70 | default n |
---|
| 71 | depends on START_STOP_DAEMON && GETOPT_LONG |
---|
| 72 | help |
---|
| 73 | Support long options for the start-stop-daemon applet. |
---|
| 74 | |
---|
| 75 | config WHICH |
---|
| 76 | bool "which" |
---|
| 77 | default n |
---|
| 78 | help |
---|
| 79 | which is used to find programs in your PATH and |
---|
| 80 | print out their pathnames. |
---|
| 81 | |
---|
| 82 | endmenu |
---|
| 83 | |
---|