source: MondoRescue/branches/2.2.9/mindi-busybox/debianutils/Config.in@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 2.0 KB
Line 
1# DO NOT EDIT. This file is generated from Config.src
2#
3# For a description of the syntax of this configuration file,
4# see scripts/kbuild/config-language.txt.
5#
6
7menu "Debian Utilities"
8
9
10
11config MKTEMP
12 bool "mktemp"
13 default y
14 help
15 mktemp is used to create unique temporary files
16
17config PIPE_PROGRESS
18 bool "pipe_progress"
19 default y
20 help
21 Display a dot to indicate pipe activity.
22
23config RUN_PARTS
24 bool "run-parts"
25 default y
26 help
27 run-parts is a utility designed to run all the scripts in a directory.
28
29 It is useful to set up a directory like cron.daily, where you need to
30 execute all the scripts in that directory.
31
32 In this implementation of run-parts some features (such as report
33 mode) are not implemented.
34
35 Unless you know that run-parts is used in some of your scripts
36 you can safely say N here.
37
38config FEATURE_RUN_PARTS_LONG_OPTIONS
39 bool "Enable long options"
40 default y
41 depends on RUN_PARTS && LONG_OPTS
42 help
43 Support long options for the run-parts applet.
44
45config FEATURE_RUN_PARTS_FANCY
46 bool "Support additional arguments"
47 default y
48 depends on RUN_PARTS
49 help
50 Support additional options:
51 -l --list print the names of the all matching files (not
52 limited to executables), but don't actually run them.
53
54config START_STOP_DAEMON
55 bool "start-stop-daemon"
56 default y
57 help
58 start-stop-daemon is used to control the creation and
59 termination of system-level processes, usually the ones
60 started during the startup of the system.
61
62config FEATURE_START_STOP_DAEMON_FANCY
63 bool "Support additional arguments"
64 default y
65 depends on START_STOP_DAEMON
66 help
67 Support additional arguments.
68 -o|--oknodo ignored since we exit with 0 anyway
69 -v|--verbose
70 -N|--nicelevel N
71
72config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
73 bool "Enable long options"
74 default y
75 depends on START_STOP_DAEMON && LONG_OPTS
76 help
77 Support long options for the start-stop-daemon applet.
78
79config WHICH
80 bool "which"
81 default y
82 help
83 which is used to find programs in your PATH and
84 print out their pathnames.
85
86endmenu
Note: See TracBrowser for help on using the repository browser.