mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-18 23:01:14 +00:00
puppet: fix missing space between command and arg
Fixes:
~~~
{
"cmd": "/usr/bin/puppetconfig print agent_disabled_lockfile",
"failed": true,
"msg": "[Errno 2] No such file or directory",
"rc": 2
}
~~~
This commit is contained in:
@@ -128,7 +128,7 @@ def main():
|
||||
# Check if puppet is disabled here
|
||||
if p['puppetmaster']:
|
||||
rc, stdout, stderr = module.run_command(
|
||||
PUPPET_CMD + "config print agent_disabled_lockfile")
|
||||
PUPPET_CMD + " config print agent_disabled_lockfile")
|
||||
if os.path.exists(stdout.strip()):
|
||||
module.fail_json(
|
||||
msg="Puppet agent is administratively disabled.", disabled=True)
|
||||
|
||||
Reference in New Issue
Block a user