From 403d157c457ed67c514a0042dcfd7f89d310c286 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 22 Jan 2016 16:56:09 -0800 Subject: [PATCH] Fix typo in puppet apply command This was missing a terminal space which caused the command to be: --logdest syslog--no-noop Change-Id: I13827a5ed30f782bdacc38acebf284d7226ebce9 --- library/puppet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/puppet b/library/puppet index 03e269a..9c2149e 100644 --- a/library/puppet +++ b/library/puppet @@ -183,7 +183,7 @@ def main(): else: cmd += " --no-noop" else: - cmd = "%s apply --detailed-exitcodes --logdest syslog" % base_cmd + cmd = "%s apply --detailed-exitcodes --logdest syslog " % base_cmd if p['environment']: cmd += "--environment '%s' " % p['environment'] if module.check_mode: