root_on_create for Couchbase should be false

Currently all Couchbase datastores that are created enable
root and return a root password on the call. This shouldn't
be the default. This commit changes the default for Couchbase
to false.

Change-Id: Id0099bc55d6bab4f63001d3b20ded37b3db901c4
Closes-bug: 1507137
This commit is contained in:
Doug Shelley 2015-10-17 12:33:00 +00:00
parent 0087512209
commit 0178e50e0a
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ couchbase_opts = [
cfg.StrOpt('mount_point', default='/var/lib/couchbase',
help="Filesystem path for mounting "
"volumes if volume support is enabled."),
cfg.BoolOpt('root_on_create', default=True,
cfg.BoolOpt('root_on_create', default=False,
help='Enable the automatic creation of the root user for the '
'service during instance-create. The generated password for '
'the root user is immediately returned in the response of '