diff options
author | Rob Landley | 2006-04-28 19:38:04 +0000 |
---|---|---|
committer | Rob Landley | 2006-04-28 19:38:04 +0000 |
commit | a2d9a1752c4a59adc94307c584f949b24bd10338 (patch) | |
tree | 5e51df91f30752db400655b99f798969191b32bb /networking/Config.in | |
parent | 0e6a3e14e41f6ce7407f9d47eec9db257eb6b125 (diff) | |
download | busybox-a2d9a1752c4a59adc94307c584f949b24bd10338.zip busybox-a2d9a1752c4a59adc94307c584f949b24bd10338.tar.gz |
More usage.h cleanups, with collateral changes to httpd. Specifically,
most of our CONFIG entries switch stuff on instead of off when enabled, so fix
the gratuitously reversed INETD thing.
Diffstat (limited to 'networking/Config.in')
-rw-r--r-- | networking/Config.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/networking/Config.in b/networking/Config.in index 61d03aa..94e59ea 100644 --- a/networking/Config.in +++ b/networking/Config.in @@ -61,18 +61,18 @@ config CONFIG_HTTPD help Serve web pages via an HTTP server. -config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY - bool "Support using httpd only from inetd" +config CONFIG_FEATURE_HTTPD_WITHOUT_INETD + bool "Support using httpd as a daemon (not from inetd)" default n depends on CONFIG_HTTPD help - This option disables uid and port options for the httpd applet - but requires inetd server daemon. + This option enables uid and port options for the httpd applet, + and eliminates the need to be called from the inetd server daemon. config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP bool "Support reloading the global config file using hup signal" default n - depends on CONFIG_HTTPD && !CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY + depends on CONFIG_HTTPD && CONFIG_FEATURE_HTTPD_WITHOUT_INETD help This option enables processing of SIGHUP to reload cached configuration settings. @@ -80,7 +80,7 @@ config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP config CONFIG_FEATURE_HTTPD_SETUID bool "Enable support -u <user> option" default n - depends on CONFIG_HTTPD && !CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY + depends on CONFIG_HTTPD && CONFIG_FEATURE_HTTPD_WITHOUT_INETD help This option allows the server to run as a specific user rather than defaulting to the user that starts the server. |