Document backup options

To make future diffing easier, use consistent ordering
This commit is contained in:
John Barker 2016-09-12 16:16:07 +01:00 committed by Matt Clay
parent 9d32e313b7
commit c01328b597
3 changed files with 28 additions and 7 deletions

View file

@ -63,7 +63,7 @@ options:
a change needs to be made. This allows the playbook designer
the opportunity to perform configuration commands prior to pushing
any changes without affecting how the set of commands are matched
against the system
against the system.
required: false
default: null
after:
@ -322,8 +322,8 @@ def main():
config=dict(),
default=dict(type='bool', default=False),
save=dict(type='bool', default=False),
backup=dict(type='bool', default=False),
save=dict(default=False, type='bool'),
)
mutually_exclusive = [('lines', 'src')]