1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Change debug flag to D instead of d.

d would be useful for --dry-run.
This commit is contained in:
Jeroen Hoekx 2012-03-31 12:48:19 +02:00
parent d9a16a3d67
commit a6b8973938

View file

@ -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')