Merge branch 'force-generate-passwords-73' of git://github.com/dreamhost/Openstack-DevstackPy into dreamhost-force-generate-passwords-73

Conflicts:
	devstack/shell.py
	stack
This commit is contained in:
Joshua Harlow
2012-03-12 15:51:41 -07:00
16 changed files with 203 additions and 116 deletions

View File

@@ -76,6 +76,12 @@ def parse():
action="store_false",
dest="ensure_deps",
help="ignore dependencies when performing ACTION")
base_group.add_option("--no-prompt-passwords",
action="store_false",
dest="prompt_for_passwords",
default=True,
help="do not prompt the user for passwords",
)
base_group.add_option("-e", "--ensure-deps",
action="store_true",
dest="ensure_deps",
@@ -117,5 +123,6 @@ def parse():
output['keep_old'] = options.keep_old
output['extras'] = args
output['verbosity'] = len(options.verbosity)
output['prompt_for_passwords'] = options.prompt_for_passwords
return output