Facter module should return custom facts

The ansible facter module should also return puppet custom facts by
default.
This commit is contained in:
Simon Aquino 2014-10-21 23:47:03 +01:00 committed by Matt Clay
parent f5a1196cc7
commit f9b85306f0

View file

@ -45,7 +45,7 @@ def main():
argument_spec = dict()
)
cmd = ["/usr/bin/env", "facter", "--json"]
cmd = ["/usr/bin/env", "facter", "--puppet", "--json"]
rc, out, err = module.run_command(cmd, check_rc=True)
module.exit_json(**json.loads(out))