Merge pull request #219 from jhoekx/revert-facts-modules

Ohai and facter modules should not use the ansible_facts API.
pull/220/head^2
Michael DeHaan 13 years ago
commit 5f1bbb1de2

@ -22,6 +22,4 @@
# facter
# ruby-json
echo '{ "ansible_facts":'
/usr/bin/facter --json
echo '}'

@ -18,6 +18,4 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
echo '{ "ansible_facts":'
/usr/bin/ohai
echo '}'

@ -85,7 +85,7 @@ class TestRunner(unittest.TestCase):
if not get_binary("facter"):
raise SkipTest
result = self._run('facter',[])
assert "hostname" in result['ansible_facts']
assert "hostname" in result
# temporarily disbabled since it occasionally hangs
# ohai's fault, setup module doesn't actually run this
@ -95,7 +95,7 @@ class TestRunner(unittest.TestCase):
# if not get_binary("facter"):
# raise SkipTest
# result = self._run('ohai',[])
# assert "hostname" in result['ansible_facts']
# assert "hostname" in result
def test_copy(self):
# test copy module, change trigger, etc

Loading…
Cancel
Save