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
RevLine 
[2725]1# DO NOT EDIT. This file is generated from Config.src
[821]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
[2725]9
10
[1765]11config MKTEMP
[821]12 bool "mktemp"
[2725]13 default y
[821]14 help
15 mktemp is used to create unique temporary files
16
[1765]17config PIPE_PROGRESS
[821]18 bool "pipe_progress"
[2725]19 default y
[821]20 help
21 Display a dot to indicate pipe activity.
22
[1765]23config RUN_PARTS
[821]24 bool "run-parts"
[2725]25 default y
[821]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
[2725]32 In this implementation of run-parts some features (such as report
33 mode) are not implemented.
[821]34
35 Unless you know that run-parts is used in some of your scripts
36 you can safely say N here.
37
[1765]38config FEATURE_RUN_PARTS_LONG_OPTIONS
[821]39 bool "Enable long options"
[2725]40 default y
41 depends on RUN_PARTS && LONG_OPTS
[821]42 help
43 Support long options for the run-parts applet.
44
[1765]45config FEATURE_RUN_PARTS_FANCY
46 bool "Support additional arguments"
[2725]47 default y
[1765]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
[821]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
[1765]62config FEATURE_START_STOP_DAEMON_FANCY
[821]63 bool "Support additional arguments"
64 default y
[1765]65 depends on START_STOP_DAEMON
[821]66 help
67 Support additional arguments.
68 -o|--oknodo ignored since we exit with 0 anyway
69 -v|--verbose
[2725]70 -N|--nicelevel N
[821]71
[1765]72config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
[821]73 bool "Enable long options"
[2725]74 default y
75 depends on START_STOP_DAEMON && LONG_OPTS
[821]76 help
77 Support long options for the start-stop-daemon applet.
78
[1765]79config WHICH
[821]80 bool "which"
[2725]81 default y
[821]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.