Config.in 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Debian Utilities"
  6. config MKTEMP
  7. bool "mktemp"
  8. default n
  9. help
  10. mktemp is used to create unique temporary files
  11. config PIPE_PROGRESS
  12. bool "pipe_progress"
  13. default n
  14. help
  15. Display a dot to indicate pipe activity.
  16. config RUN_PARTS
  17. bool "run-parts"
  18. default n
  19. help
  20. run-parts is a utility designed to run all the scripts in a directory.
  21. It is useful to set up a directory like cron.daily, where you need to
  22. execute all the scripts in that directory.
  23. In this implementation of run-parts some features (such as report mode)
  24. are not implemented.
  25. Unless you know that run-parts is used in some of your scripts
  26. you can safely say N here.
  27. config FEATURE_RUN_PARTS_LONG_OPTIONS
  28. bool "Enable long options"
  29. default n
  30. depends on RUN_PARTS && GETOPT_LONG
  31. help
  32. Support long options for the run-parts applet.
  33. config FEATURE_RUN_PARTS_FANCY
  34. bool "Support additional arguments"
  35. default n
  36. depends on RUN_PARTS
  37. help
  38. Support additional options:
  39. -l --list print the names of the all matching files (not
  40. limited to executables), but don't actually run them.
  41. config START_STOP_DAEMON
  42. bool "start-stop-daemon"
  43. default n
  44. help
  45. start-stop-daemon is used to control the creation and
  46. termination of system-level processes, usually the ones
  47. started during the startup of the system.
  48. config FEATURE_START_STOP_DAEMON_FANCY
  49. bool "Support additional arguments"
  50. default n
  51. depends on START_STOP_DAEMON
  52. help
  53. Support additional arguments.
  54. -o|--oknodo ignored since we exit with 0 anyway
  55. -v|--verbose
  56. config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
  57. bool "Enable long options"
  58. default n
  59. depends on START_STOP_DAEMON && GETOPT_LONG
  60. help
  61. Support long options for the start-stop-daemon applet.
  62. config WHICH
  63. bool "which"
  64. default n
  65. help
  66. which is used to find programs in your PATH and
  67. print out their pathnames.
  68. endmenu