Change --deploy to --no-deploy (since deploy is the default)

This commit is contained in:
Joseph Hall 2012-11-20 19:57:13 +00:00
parent d547bbfb2b
commit 6a96be86b6

View File

@ -172,9 +172,11 @@ class ExecutionOptionsMixIn(object):
help='Specify a vm to destroy'
)
group.add_option(
'--deploy',
'--no-deploy',
default=True,
help='Whether or not to run a deploy script after VM creation'
dest='deploy',
action='store_false',
help='Don\'t run a deploy script after VM creation'
)
group.add_option(
'-P', '--parallel',