puppet: ensure puppet is in live mode per default
puppet may be configured to operate in `--noop` mode per default. That is why we must pass a `--no-noop` to make sure, changes are going to be applied.
This commit is contained in:
parent
74cc1bb624
commit
8f9c3efb1d
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…
Reference in a new issue