Merge pull request #585 from resmo/fix/puppet-no-noop
puppet: ensure puppet is in live mode per default
This commit is contained in:
commit
c1d6023d98
1 changed files with 4 additions and 0 deletions
|
@ -156,10 +156,14 @@ def main():
|
|||
cmd += " --show-diff"
|
||||
if module.check_mode:
|
||||
cmd += " --noop"
|
||||
else:
|
||||
cmd += " --no-noop"
|
||||
else:
|
||||
cmd = "%s apply --detailed-exitcodes " % base_cmd
|
||||
if module.check_mode:
|
||||
cmd += "--noop "
|
||||
else:
|
||||
cmd += "--no-noop "
|
||||
cmd += pipes.quote(p['manifest'])
|
||||
rc, stdout, stderr = module.run_command(cmd)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue