Unified format of boolean params in conf files

In swift conf files, boolean options use different
format: some use true/false, and some use True/False.
This patch is aim to using lowcase true/false to unify
boolean params formats in swift conf files.

Fix Bug #1203421

Change-Id: I3e1bfc6e43231f51e0710aa54869f3774ee896b1
This commit is contained in:
Newptone 2013-07-21 12:18:24 +08:00
parent 0fdad0d9d9
commit 5c1a7871d9
4 changed files with 17 additions and 17 deletions

View File

@ -51,7 +51,7 @@ use = egg:swift#account
# set log_name = account-server
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_requests = True
# set log_requests = true
# set log_address = /dev/log
#
# auto_create_account_prefix = .
@ -63,7 +63,7 @@ use = egg:swift#account
# set to a True value (e.g. "True" or "1"). To handle only non-replication
# verbs, set to "False". Unless you have a separate replication network, you
# should not specify any value for "replication_server".
# replication_server = False
# replication_server = false
[filter:healthcheck]
use = egg:swift#healthcheck

View File

@ -55,12 +55,12 @@ use = egg:swift#container
# set log_name = container-server
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_requests = True
# set log_requests = true
# set log_address = /dev/log
#
# node_timeout = 3
# conn_timeout = 0.5
# allow_versions = False
# allow_versions = false
# auto_create_account_prefix = .
# max_clients = 1024
#
@ -70,7 +70,7 @@ use = egg:swift#container
# set to a True value (e.g. "True" or "1"). To handle only non-replication
# verbs, set to "False". Unless you have a separate replication network, you
# should not specify any value for "replication_server".
# replication_server = False
# replication_server = false
[filter:healthcheck]
use = egg:swift#healthcheck

View File

@ -48,7 +48,7 @@ use = egg:swift#object
# set log_name = object-server
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_requests = True
# set log_requests = true
# set log_address = /dev/log
#
# node_timeout = 3
@ -63,7 +63,7 @@ use = egg:swift#object
#
# If true, objects for authenticated GET requests may be kept in buffer cache
# if small enough
# keep_cache_private = False
# keep_cache_private = false
#
# on PUTs, sync data every n MB
# mb_per_sync = 512
@ -82,7 +82,7 @@ use = egg:swift#object
# set to a True value (e.g. "True" or "1"). To handle only non-replication
# verbs, set to "False". Unless you have a separate replication network, you
# should not specify any value for "replication_server".
# replication_server = False
# replication_server = false
# A value of 0 means "don't use thread pools". A reasonable starting point is 4.
# threads_per_disk = 0

View File

@ -17,7 +17,7 @@
# log_name = swift
# log_facility = LOG_LOCAL0
# log_level = INFO
# log_headers = False
# log_headers = false
# log_address = /dev/log
#
# This optional suffix (default is empty) that would be appended to the swift transaction
@ -59,7 +59,7 @@ use = egg:swift#proxy
# set log_level = INFO
# set log_address = /dev/log
#
# log_handoffs = True
# log_handoffs = true
# recheck_account_existence = 60
# recheck_container_existence = 60
# object_chunk_size = 8192
@ -177,7 +177,7 @@ use = egg:swift#tempauth
# set log_name = tempauth
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_headers = False
# set log_headers = false
# set log_address = /dev/log
#
# The reseller prefix will verify a token begins with this prefix before even
@ -264,7 +264,7 @@ use = egg:swift#memcache
# set log_name = cache
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_headers = False
# set log_headers = false
# set log_address = /dev/log
#
# If not set here, the value for memcache_servers will be read from
@ -291,7 +291,7 @@ use = egg:swift#ratelimit
# set log_name = ratelimit
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_headers = False
# set log_headers = false
# set log_address = /dev/log
#
# clock_accuracy should represent how accurate the proxy servers' system clocks
@ -329,7 +329,7 @@ use = egg:swift#domain_remap
# set log_name = domain_remap
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_headers = False
# set log_headers = false
# set log_address = /dev/log
#
# storage_domain = example.com
@ -342,7 +342,7 @@ use = egg:swift#catch_errors
# set log_name = catch_errors
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_headers = False
# set log_headers = false
# set log_address = /dev/log
[filter:cname_lookup]
@ -352,7 +352,7 @@ use = egg:swift#cname_lookup
# set log_name = cname_lookup
# set log_facility = LOG_LOCAL0
# set log_level = INFO
# set log_headers = False
# set log_headers = false
# set log_address = /dev/log
#
# storage_domain = example.com
@ -423,7 +423,7 @@ use = egg:swift#proxy_logging
# access_log_statsd_default_sample_rate = 1.0
# access_log_statsd_sample_rate_factor = 1.0
# access_log_statsd_metric_prefix =
# access_log_headers = False
# access_log_headers = false
#
# What HTTP methods are allowed for StatsD logging (comma-sep); request methods
# not in this list will have "BAD_METHOD" for the <verb> portion of the metric.