mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-09 06:40:03 -07:00
puppet: Add documentation and remove deprecation for show_diff
This commit is contained in:
parent
1ba79f3c6a
commit
36423289cc
1 changed files with 6 additions and 3 deletions
|
@ -92,6 +92,11 @@ options:
|
||||||
- Enable full debugging.
|
- Enable full debugging.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
|
show_diff:
|
||||||
|
description:
|
||||||
|
- Wether to print file changes details
|
||||||
|
type: bool
|
||||||
|
default: false
|
||||||
requirements:
|
requirements:
|
||||||
- puppet
|
- puppet
|
||||||
author:
|
author:
|
||||||
|
@ -174,9 +179,7 @@ def main():
|
||||||
manifest=dict(type='str'),
|
manifest=dict(type='str'),
|
||||||
noop=dict(type='bool'),
|
noop=dict(type='bool'),
|
||||||
logdest=dict(type='str', default='stdout', choices=['all', 'stdout', 'syslog']),
|
logdest=dict(type='str', default='stdout', choices=['all', 'stdout', 'syslog']),
|
||||||
show_diff=dict(
|
show_diff=dict(type='bool', default=False, aliases=['show-diff']),
|
||||||
type='bool', default=False, aliases=['show-diff'],
|
|
||||||
removed_in_version='7.0.0', removed_from_collection='community.general'),
|
|
||||||
facts=dict(type='dict'),
|
facts=dict(type='dict'),
|
||||||
facter_basename=dict(type='str', default='ansible'),
|
facter_basename=dict(type='str', default='ansible'),
|
||||||
environment=dict(type='str'),
|
environment=dict(type='str'),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue