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
This commit is contained in:
James E. Blair 2016-01-22 16:56:09 -08:00
parent f5ec19782a
commit 403d157c45
1 changed files with 1 additions and 1 deletions

View File

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