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.
|
||||
type: bool
|
||||
default: false
|
||||
show_diff:
|
||||
description:
|
||||
- Wether to print file changes details
|
||||
type: bool
|
||||
default: false
|
||||
requirements:
|
||||
- puppet
|
||||
author:
|
||||
|
@ -174,9 +179,7 @@ def main():
|
|||
manifest=dict(type='str'),
|
||||
noop=dict(type='bool'),
|
||||
logdest=dict(type='str', default='stdout', choices=['all', 'stdout', 'syslog']),
|
||||
show_diff=dict(
|
||||
type='bool', default=False, aliases=['show-diff'],
|
||||
removed_in_version='7.0.0', removed_from_collection='community.general'),
|
||||
show_diff=dict(type='bool', default=False, aliases=['show-diff']),
|
||||
facts=dict(type='dict'),
|
||||
facter_basename=dict(type='str', default='ansible'),
|
||||
environment=dict(type='str'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue