2002-12-05 08:41:41 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "Debian Utilities"
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config MKTEMP
|
2002-12-05 08:41:41 +00:00
|
|
|
bool "mktemp"
|
|
|
|
default n
|
|
|
|
help
|
2003-07-05 07:52:35 +00:00
|
|
|
mktemp is used to create unique temporary files
|
2002-12-05 08:41:41 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config PIPE_PROGRESS
|
2003-11-14 10:04:33 +00:00
|
|
|
bool "pipe_progress"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Display a dot to indicate pipe activity.
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config RUN_PARTS
|
2002-12-05 08:41:41 +00:00
|
|
|
bool "run-parts"
|
|
|
|
default n
|
|
|
|
help
|
2003-07-05 07:52:35 +00:00
|
|
|
run-parts is a utility designed to run all the scripts in a directory.
|
2002-12-05 21:12:42 +00:00
|
|
|
|
|
|
|
It is useful to set up a directory like cron.daily, where you need to
|
|
|
|
execute all the scripts in that directory.
|
|
|
|
|
2008-07-22 18:27:53 +00:00
|
|
|
In this implementation of run-parts some features (such as report
|
|
|
|
mode) are not implemented.
|
2002-12-05 21:12:42 +00:00
|
|
|
|
|
|
|
Unless you know that run-parts is used in some of your scripts
|
|
|
|
you can safely say N here.
|
2002-12-05 08:41:41 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config FEATURE_RUN_PARTS_LONG_OPTIONS
|
2006-05-26 20:19:22 +00:00
|
|
|
bool "Enable long options"
|
|
|
|
default n
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on RUN_PARTS && GETOPT_LONG
|
2006-05-26 20:19:22 +00:00
|
|
|
help
|
|
|
|
Support long options for the run-parts applet.
|
|
|
|
|
2007-03-28 20:35:13 +00:00
|
|
|
config FEATURE_RUN_PARTS_FANCY
|
|
|
|
bool "Support additional arguments"
|
|
|
|
default n
|
|
|
|
depends on RUN_PARTS
|
|
|
|
help
|
|
|
|
Support additional options:
|
|
|
|
-l --list print the names of the all matching files (not
|
|
|
|
limited to executables), but don't actually run them.
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config START_STOP_DAEMON
|
2003-07-26 09:16:00 +00:00
|
|
|
bool "start-stop-daemon"
|
2008-02-19 23:42:22 +00:00
|
|
|
default n
|
2003-07-26 09:16:00 +00:00
|
|
|
help
|
|
|
|
start-stop-daemon is used to control the creation and
|
|
|
|
termination of system-level processes, usually the ones
|
|
|
|
started during the startup of the system.
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config FEATURE_START_STOP_DAEMON_FANCY
|
2006-06-11 17:24:01 +00:00
|
|
|
bool "Support additional arguments"
|
2008-02-19 23:42:22 +00:00
|
|
|
default n
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on START_STOP_DAEMON
|
2006-06-11 17:24:01 +00:00
|
|
|
help
|
|
|
|
Support additional arguments.
|
|
|
|
-o|--oknodo ignored since we exit with 0 anyway
|
|
|
|
-v|--verbose
|
2008-09-26 15:14:56 +00:00
|
|
|
-N|--nicelevel N
|
2006-06-11 17:24:01 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
|
2006-05-26 20:19:22 +00:00
|
|
|
bool "Enable long options"
|
|
|
|
default n
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on START_STOP_DAEMON && GETOPT_LONG
|
2006-05-26 20:19:22 +00:00
|
|
|
help
|
|
|
|
Support long options for the start-stop-daemon applet.
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config WHICH
|
2002-12-05 08:41:41 +00:00
|
|
|
bool "which"
|
|
|
|
default n
|
|
|
|
help
|
2003-07-05 07:52:35 +00:00
|
|
|
which is used to find programs in your PATH and
|
|
|
|
print out their pathnames.
|
2002-12-05 08:41:41 +00:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|