Change debug flag to D instead of d.
d would be useful for --dry-run.
This commit is contained in:
parent
d9a16a3d67
commit
a6b8973938
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ def main(args):
|
|||
# create parser for CLI options
|
||||
parser = OptionParser()
|
||||
parser.usage = "ans-playbook playbook.yml ..."
|
||||
parser.add_option('-d','--debug', default=False, action="store_true",
|
||||
parser.add_option('-D','--debug', default=False, action="store_true",
|
||||
help='enable standard error debugging of modules.')
|
||||
parser.add_option('-f','--forks', dest='forks', default=C.DEFAULT_FORKS, type='int',
|
||||
help='set the number of forks to start up')
|
||||
|
|
Loading…
Reference in a new issue