2012-07-24 17:38:56 +02:00
|
|
|
#!/usr/bin/python
|
2012-08-03 03:29:10 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-02-23 21:24:24 +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: facter
|
2012-09-30 15:06:18 +02:00
|
|
|
short_description: Runs the discovery program I(facter) on the remote system
|
2012-09-30 12:21:35 +02:00
|
|
|
description:
|
2012-10-01 09:18:54 +02:00
|
|
|
- Runs the I(facter) discovery program
|
|
|
|
(U(https://github.com/puppetlabs/facter)) on the remote system, returning
|
|
|
|
JSON data that can be useful for inventory purposes.
|
2012-09-30 12:21:35 +02:00
|
|
|
version_added: "0.2"
|
2012-11-03 23:52:59 +01:00
|
|
|
options: {}
|
2012-09-30 12:21:35 +02:00
|
|
|
examples:
|
2012-10-18 02:20:40 +02:00
|
|
|
- code: ansible www.example.net -m facter
|
2012-09-30 12:21:35 +02:00
|
|
|
description: "Example command-line invocation"
|
|
|
|
notes: []
|
|
|
|
requirements: [ "facter", "ruby-json" ]
|
|
|
|
author: Michael DeHaan
|
|
|
|
'''
|
2012-02-23 21:24:24 +01:00
|
|
|
|
2012-07-24 17:38:56 +02:00
|
|
|
import subprocess
|
|
|
|
|
|
|
|
def get_facter_data():
|
2012-08-11 18:35:58 +02:00
|
|
|
p = subprocess.Popen(["/usr/bin/env", "facter", "--json"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
(out, err) = p.communicate()
|
|
|
|
rc = p.returncode
|
|
|
|
return rc, out, err
|
2012-07-24 17:38:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2012-08-11 18:35:58 +02:00
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec = dict()
|
|
|
|
)
|
|
|
|
|
|
|
|
rc, out, err = get_facter_data()
|
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg=err)
|
|
|
|
else:
|
|
|
|
module.exit_json(**json.loads(out))
|
2012-07-24 17:38:56 +02:00
|
|
|
|
|
|
|
# this is magic, see lib/ansible/module_common.py
|
|
|
|
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
|
|
|
|
|
|
|
main()
|
|
|
|
|