Improving documentation on options

Also regenerated man page based on improvments
The previous messages were ambiguous
https://bugzilla.redhat.com/show_bug.cgi?id=888744
This commit is contained in:
Derek Higgins
2012-12-19 20:03:00 -05:00
parent 24df2a7bc6
commit ceb2af5697
13 changed files with 90 additions and 79 deletions

View File

@@ -29,7 +29,7 @@ def initConfig(controllerObject):
paramsList = [
{"CMD_OPTION" : "keystone-host",
"USAGE" : "The IP address of the server on which to install Keystone",
"PROMPT" : "The IP address of the server on which to install Keystone",
"PROMPT" : "Enter the IP address of the Keystone server",
"OPTION_LIST" : [],
"VALIDATION_FUNC" : validate.validateSSH,
"DEFAULT_VALUE" : "127.0.0.1",
@@ -55,8 +55,8 @@ def initConfig(controllerObject):
"NEED_CONFIRM" : False,
"CONDITION" : False },
{"CMD_OPTION" : "keystone-admin-passwd",
"USAGE" : "The token password to use for the keystone admin user",
"PROMPT" : "The token password to use for the keystone admin user",
"USAGE" : "The password to use for the keystone admin user",
"PROMPT" : "Enter the password for the keystone admin user",
"OPTION_LIST" : [],
"VALIDATION_FUNC" : validate.validateStringNotEmpty,
"DEFAULT_VALUE" : uuid.uuid4().hex[:6],