1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02: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:
Esa Varemo 2020-04-03 23:46:42 +03:00
parent 8d7c830226
commit 6ed7f0658a
No known key found for this signature in database
GPG key ID: 4B19278740CF4F17

View file

@ -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']: