mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 10:51:03 +00:00
puppet: fix manifest whitespace
There was a space missing before the manifest path causing issues like: "invalid option: --noop/test.pp"
This commit is contained in:
@@ -289,7 +289,7 @@ def main():
|
|||||||
if p['execute']:
|
if p['execute']:
|
||||||
cmd += " --execute '%s'" % p['execute']
|
cmd += " --execute '%s'" % p['execute']
|
||||||
else:
|
else:
|
||||||
cmd += shlex_quote(p['manifest'])
|
cmd += " %s" % shlex_quote(p['manifest'])
|
||||||
if p['summarize']:
|
if p['summarize']:
|
||||||
cmd += " --summarize"
|
cmd += " --summarize"
|
||||||
if p['debug']:
|
if p['debug']:
|
||||||
|
|||||||
Reference in New Issue
Block a user