Added an 'ohai' module. Some weird JSON hackage to get it to work.

This commit is contained in:
Michael DeHaan 2012-02-24 02:04:50 -05:00
parent 8336f0d650
commit 0cf1ef735d

12
ohai Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/python
# requires 'ohai' to be installed
import json
import subprocess
cmd = subprocess.Popen("/usr/bin/ohai", stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = cmd.communicate()
# try to cleanup the JSON, for some reason facter --json doesn't need this hack
print json.dumps(json.loads(out))