2012-07-28 23:07:55 +02:00
|
|
|
#!/usr/bin/python
|
2012-08-03 03:29:10 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-02-24 08:04:50 +01:00
|
|
|
|
2012-02-29 01:08:09 +01:00
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2012-09-30 12:21:35 +02:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: ohai
|
2012-11-21 18:49:30 +01:00
|
|
|
short_description: Returns inventory data from I(Ohai)
|
2012-09-30 12:21:35 +02:00
|
|
|
description:
|
2012-11-21 18:49:30 +01:00
|
|
|
- Similar to the M(facter) module, this runs the I(Ohai) discovery program
|
2012-10-01 09:18:54 +02:00
|
|
|
(U(http://wiki.opscode.com/display/chef/Ohai)) on the remote host and
|
|
|
|
returns JSON inventory data.
|
2012-09-30 12:21:35 +02:00
|
|
|
I(Ohai) data is a bit more verbose and nested than I(facter).
|
2013-11-28 03:23:03 +01:00
|
|
|
version_added: "0.6"
|
2012-11-03 23:52:59 +01:00
|
|
|
options: {}
|
2012-09-30 12:21:35 +02:00
|
|
|
notes: []
|
|
|
|
requirements: [ "ohai" ]
|
|
|
|
author: Michael DeHaan
|
|
|
|
'''
|
|
|
|
|
2013-06-14 11:53:43 +02:00
|
|
|
EXAMPLES = '''
|
|
|
|
# Retrieve (ohai) data from all Web servers and store in one-file per host
|
|
|
|
ansible webservers -m ohai --tree=/tmp/ohaidata
|
|
|
|
'''
|
|
|
|
|
2012-07-28 23:07:55 +02:00
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec = dict()
|
|
|
|
)
|
Update modules to use run_command in module_common.py
This updates apt, apt_repository, command, cron, easy_install, facter,
fireball, git, group, mount, ohai, pip, service, setup, subversion,
supervisorctl, svr4pkg, user, and yum to take advantage of run_command
in module_common.py.
2013-01-12 07:10:21 +01:00
|
|
|
cmd = ["/usr/bin/env", "ohai"]
|
2013-01-13 18:12:40 +01:00
|
|
|
rc, out, err = module.run_command(cmd, check_rc=True)
|
Update modules to use run_command in module_common.py
This updates apt, apt_repository, command, cron, easy_install, facter,
fireball, git, group, mount, ohai, pip, service, setup, subversion,
supervisorctl, svr4pkg, user, and yum to take advantage of run_command
in module_common.py.
2013-01-12 07:10:21 +01:00
|
|
|
module.exit_json(**json.loads(out))
|
2012-07-28 23:07:55 +02:00
|
|
|
|
2013-12-02 21:13:49 +01:00
|
|
|
# import module snippets
|
2013-12-02 21:11:23 +01:00
|
|
|
from ansible.module_utils.basic import *
|
2012-07-28 23:07:55 +02:00
|
|
|
|
|
|
|
main()
|
|
|
|
|
|
|
|
|