blob: f1b73b645f4f8e8d9090e8f5a2b8308ef70caa1c [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Debian Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config MKTEMP
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "mktemp"
10 default n
11 help
Eric Andersen65e20a32003-07-05 07:52:35 +000012 mktemp is used to create unique temporary files
Eric Andersenc9f20d92002-12-05 08:41:41 +000013
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000014config PIPE_PROGRESS
Glenn L McGrathe9080c92003-11-14 10:04:33 +000015 bool "pipe_progress"
16 default n
17 help
18 Display a dot to indicate pipe activity.
19
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000020config RUN_PARTS
Eric Andersenc9f20d92002-12-05 08:41:41 +000021 bool "run-parts"
22 default n
23 help
Eric Andersen65e20a32003-07-05 07:52:35 +000024 run-parts is a utility designed to run all the scripts in a directory.
Eric Andersen53601822002-12-05 21:12:42 +000025
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 Andersenc7bda1c2004-03-15 08:29:22 +000029 In this implementation of run-parts some features (such as report mode)
Eric Andersendc19af42003-08-06 09:43:09 +000030 are not implemented.
Eric Andersen53601822002-12-05 21:12:42 +000031
32 Unless you know that run-parts is used in some of your scripts
33 you can safely say N here.
Eric Andersenc9f20d92002-12-05 08:41:41 +000034
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000035config FEATURE_RUN_PARTS_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000036 bool "Enable long options"
37 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000038 depends on RUN_PARTS && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000039 help
40 Support long options for the run-parts applet.
41
Bernhard Reutner-Fischerb7cffd42007-03-28 20:35:13 +000042config 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 Vlasenko7d219aa2006-10-05 10:17:08 +000051config START_STOP_DAEMON
Eric Andersena1ed06b2003-07-26 09:16:00 +000052 bool "start-stop-daemon"
Denis Vlasenkoe7b43cf2008-02-19 23:42:22 +000053 default n
Eric Andersena1ed06b2003-07-26 09:16:00 +000054 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 Vlasenko7d219aa2006-10-05 10:17:08 +000059config FEATURE_START_STOP_DAEMON_FANCY
Bernhard Reutner-Fischera926f8e2006-06-11 17:24:01 +000060 bool "Support additional arguments"
Denis Vlasenkoe7b43cf2008-02-19 23:42:22 +000061 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000062 depends on START_STOP_DAEMON
Bernhard Reutner-Fischera926f8e2006-06-11 17:24:01 +000063 help
64 Support additional arguments.
65 -o|--oknodo ignored since we exit with 0 anyway
66 -v|--verbose
67
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000068config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000069 bool "Enable long options"
70 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000071 depends on START_STOP_DAEMON && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000072 help
73 Support long options for the start-stop-daemon applet.
74
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000075config WHICH
Eric Andersenc9f20d92002-12-05 08:41:41 +000076 bool "which"
77 default n
78 help
Eric Andersen65e20a32003-07-05 07:52:35 +000079 which is used to find programs in your PATH and
80 print out their pathnames.
Eric Andersenc9f20d92002-12-05 08:41:41 +000081
82endmenu
83