blob: cbc09b5ce44caa7615555066e891a27e41238c40 [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
Denys Vlasenkod70e0e92010-06-08 12:15:11 +02008INSERT
9
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000010config MKTEMP
Eric Andersenc9f20d92002-12-05 08:41:41 +000011 bool "mktemp"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020012 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +000013 help
Eric Andersen65e20a32003-07-05 07:52:35 +000014 mktemp is used to create unique temporary files
Eric Andersenc9f20d92002-12-05 08:41:41 +000015
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000016config PIPE_PROGRESS
Glenn L McGrathe9080c92003-11-14 10:04:33 +000017 bool "pipe_progress"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020018 default y
Glenn L McGrathe9080c92003-11-14 10:04:33 +000019 help
20 Display a dot to indicate pipe activity.
21
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000022config RUN_PARTS
Eric Andersenc9f20d92002-12-05 08:41:41 +000023 bool "run-parts"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020024 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +000025 help
Eric Andersen65e20a32003-07-05 07:52:35 +000026 run-parts is a utility designed to run all the scripts in a directory.
Eric Andersen53601822002-12-05 21:12:42 +000027
28 It is useful to set up a directory like cron.daily, where you need to
29 execute all the scripts in that directory.
30
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +000031 In this implementation of run-parts some features (such as report
32 mode) are not implemented.
Eric Andersen53601822002-12-05 21:12:42 +000033
34 Unless you know that run-parts is used in some of your scripts
35 you can safely say N here.
Eric Andersenc9f20d92002-12-05 08:41:41 +000036
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000037config FEATURE_RUN_PARTS_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000038 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020039 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +020040 depends on RUN_PARTS && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000041 help
42 Support long options for the run-parts applet.
43
Bernhard Reutner-Fischerb7cffd42007-03-28 20:35:13 +000044config FEATURE_RUN_PARTS_FANCY
45 bool "Support additional arguments"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020046 default y
Bernhard Reutner-Fischerb7cffd42007-03-28 20:35:13 +000047 depends on RUN_PARTS
48 help
49 Support additional options:
50 -l --list print the names of the all matching files (not
51 limited to executables), but don't actually run them.
52
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000053config START_STOP_DAEMON
Eric Andersena1ed06b2003-07-26 09:16:00 +000054 bool "start-stop-daemon"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020055 default y
Eric Andersena1ed06b2003-07-26 09:16:00 +000056 help
57 start-stop-daemon is used to control the creation and
58 termination of system-level processes, usually the ones
59 started during the startup of the system.
60
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000061config FEATURE_START_STOP_DAEMON_FANCY
Bernhard Reutner-Fischera926f8e2006-06-11 17:24:01 +000062 bool "Support additional arguments"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020063 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000064 depends on START_STOP_DAEMON
Bernhard Reutner-Fischera926f8e2006-06-11 17:24:01 +000065 help
66 Support additional arguments.
67 -o|--oknodo ignored since we exit with 0 anyway
68 -v|--verbose
Bernhard Reutner-Fischer1a891332008-09-26 15:14:56 +000069 -N|--nicelevel N
Bernhard Reutner-Fischera926f8e2006-06-11 17:24:01 +000070
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000071config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000072 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020073 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +020074 depends on START_STOP_DAEMON && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000075 help
76 Support long options for the start-stop-daemon applet.
77
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000078config WHICH
Eric Andersenc9f20d92002-12-05 08:41:41 +000079 bool "which"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020080 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +000081 help
Eric Andersen65e20a32003-07-05 07:52:35 +000082 which is used to find programs in your PATH and
83 print out their pathnames.
Eric Andersenc9f20d92002-12-05 08:41:41 +000084
85endmenu