Increase the length of generated passwords

https://bugzilla.redhat.com/show_bug.cgi?id=893007

Change-Id: Ied31f701721f630e612520c3364d0a52f1cf2d38
This commit is contained in:
Derek Higgins
2013-01-17 02:40:04 -05:00
parent 8daf2ef26c
commit cede75d104
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ def initConfig(controllerObject):
"PROMPT" : "Enter the password for the Keystone admin user",
"OPTION_LIST" : [],
"VALIDATION_FUNC" : validate.validateStringNotEmpty,
"DEFAULT_VALUE" : uuid.uuid4().hex[:6],
"DEFAULT_VALUE" : uuid.uuid4().hex[:16],
"MASK_INPUT" : True,
"LOOSE_VALIDATION": False,
"CONF_NAME" : "CONFIG_KEYSTONE_ADMINPASSWD",

View File

@@ -58,7 +58,7 @@ def initConfig(controllerObject):
"PROMPT" : "Enter the password for the MySQL admin user",
"OPTION_LIST" : [],
"VALIDATION_FUNC" : validate.validateStringNotEmpty,
"DEFAULT_VALUE" : uuid.uuid4().hex[:6],
"DEFAULT_VALUE" : uuid.uuid4().hex[:16],
"MASK_INPUT" : True,
"LOOSE_VALIDATION": True,
"CONF_NAME" : "CONFIG_MYSQL_PW",