mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
Adjust booleans in system modules (#5153)
* Adjust booleans in system modules. * Fix some IP addresses Co-authored-by: Sandra McCann <samccann@redhat.com> Co-authored-by: Sandra McCann <samccann@redhat.com>
This commit is contained in:
parent
bcecf2dcdc
commit
be2de15c66
39 changed files with 162 additions and 146 deletions
|
@ -35,8 +35,8 @@ options:
|
|||
noop:
|
||||
description:
|
||||
- Override puppet.conf noop mode.
|
||||
- When C(yes), run Puppet agent with C(--noop) switch set.
|
||||
- When C(no), run Puppet agent with C(--no-noop) switch set.
|
||||
- When C(true), run Puppet agent with C(--noop) switch set.
|
||||
- When C(false), run Puppet agent with C(--no-noop) switch set.
|
||||
- When unset (default), use default or puppet.conf value if defined.
|
||||
type: bool
|
||||
facts:
|
||||
|
@ -139,7 +139,7 @@ EXAMPLES = r'''
|
|||
|
||||
- name: Run puppet agent in noop mode
|
||||
community.general.puppet:
|
||||
noop: yes
|
||||
noop: true
|
||||
|
||||
- name: Run a manifest with debug, log to both syslog and console, specify module path
|
||||
community.general.puppet:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue