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
parent a0df36c6ab
commit 4dd6c8204a

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))