mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
fixes bug where puppet fails if logdest is not specified
This commit is contained in:
parent
c602d49d42
commit
ac8b171da4
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ def main():
|
||||||
puppetmaster=dict(required=False, default=None),
|
puppetmaster=dict(required=False, default=None),
|
||||||
manifest=dict(required=False, default=None),
|
manifest=dict(required=False, default=None),
|
||||||
logdest=dict(
|
logdest=dict(
|
||||||
required=False, default=['stdout'],
|
required=False, default='stdout',
|
||||||
choices=['stdout', 'syslog']),
|
choices=['stdout', 'syslog']),
|
||||||
show_diff=dict(
|
show_diff=dict(
|
||||||
# internal code to work with --diff, do not use
|
# internal code to work with --diff, do not use
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue