Merge pull request #1691 from tonk/facter_fix

Fix facter path
This commit is contained in:
Brian Coca 2016-02-20 12:18:28 -05:00
commit 0098177217

View file

@ -47,7 +47,10 @@ def main():
argument_spec = dict()
)
cmd = ["/usr/bin/env", "facter", "--puppet", "--json"]
facter_path = module.get_bin_path('facter', opt_dirs=['/opt/puppetlabs/bin'])
cmd = [facter_path, "--puppet", "--json"]
rc, out, err = module.run_command(cmd, check_rc=True)
module.exit_json(**json.loads(out))