2012-02-24 09:25:09 +01:00
|
|
|
#!/usr/bin/python
|
2012-08-03 03:29:10 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-02-24 09:25:09 +01:00
|
|
|
|
2012-02-29 01:08:09 +01:00
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
#
|
2013-08-23 10:00:56 +02:00
|
|
|
# This file is part of Ansible
|
2012-02-29 01:08:09 +01:00
|
|
|
#
|
|
|
|
# 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-17 15:11:04 +02:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: setup
|
2013-11-19 00:55:49 +01:00
|
|
|
version_added: historical
|
2012-09-17 15:11:04 +02:00
|
|
|
short_description: Gathers facts about remote hosts
|
2013-02-20 17:53:14 +01:00
|
|
|
options:
|
2016-03-07 21:53:29 +01:00
|
|
|
gather_subset:
|
|
|
|
version_added: "2.1"
|
|
|
|
description:
|
2016-03-14 23:05:20 +01:00
|
|
|
- "if supplied, restrict the additional facts collected to the given subset.
|
|
|
|
Possible values: all, hardware, network, virtual, ohai, and
|
|
|
|
facter Can specify a list of values to specify a larger subset.
|
|
|
|
Values can also be used with an initial C(!) to specify that
|
|
|
|
that specific subset should not be collected. For instance:
|
|
|
|
!hardware, !network, !virtual, !ohai, !facter. Note that a few
|
|
|
|
facts are always collected. Use the filter parameter if you do
|
|
|
|
not want to display those."
|
2016-03-07 21:53:29 +01:00
|
|
|
required: false
|
|
|
|
default: 'all'
|
2013-02-20 17:53:14 +01:00
|
|
|
filter:
|
2013-03-30 20:44:34 +01:00
|
|
|
version_added: "1.1"
|
2013-02-20 17:53:14 +01:00
|
|
|
description:
|
2013-02-23 18:36:01 +01:00
|
|
|
- if supplied, only return facts that match this shell-style (fnmatch) wildcard.
|
2013-02-20 17:53:14 +01:00
|
|
|
required: false
|
2013-02-23 21:11:15 +01:00
|
|
|
default: '*'
|
2013-06-16 00:31:31 +02:00
|
|
|
fact_path:
|
|
|
|
version_added: "1.3"
|
|
|
|
description:
|
|
|
|
- path used for local ansible facts (*.fact) - files in this dir
|
|
|
|
will be run (if executable) and their results be added to ansible_local facts
|
2016-02-26 12:40:43 +01:00
|
|
|
if a file is not executable it is read. Check notes for Windows options. (from 2.1 on)
|
2013-06-16 00:31:31 +02:00
|
|
|
File/results format can be json or ini-format
|
|
|
|
required: false
|
|
|
|
default: '/etc/ansible/facts.d'
|
2013-02-15 16:17:58 +01:00
|
|
|
description:
|
2012-09-19 16:09:26 +02:00
|
|
|
- This module is automatically called by playbooks to gather useful
|
|
|
|
variables about remote hosts that can be used in playbooks. It can also be
|
|
|
|
executed directly by C(/usr/bin/ansible) to check what variables are
|
|
|
|
available to a host. Ansible provides many I(facts) about the system,
|
|
|
|
automatically.
|
2013-02-15 16:17:58 +01:00
|
|
|
notes:
|
2012-09-19 16:09:26 +02:00
|
|
|
- More ansible facts will be added with successive releases. If I(facter) or
|
|
|
|
I(ohai) are installed, variables from these programs will also be snapshotted
|
|
|
|
into the JSON file for usage in templating. These variables are prefixed
|
|
|
|
with C(facter_) and C(ohai_) so it's easy to tell their source. All variables are
|
|
|
|
bubbled up to the caller. Using the ansible facts and choosing to not
|
|
|
|
install I(facter) and I(ohai) means you can avoid Ruby-dependencies on your
|
2012-11-21 18:49:30 +01:00
|
|
|
remote systems. (See also M(facter) and M(ohai).)
|
2013-02-20 18:13:05 +01:00
|
|
|
- The filter option filters only the first level subkey below ansible_facts.
|
2016-02-26 12:40:43 +01:00
|
|
|
- If the target host is Windows, you will not currently have the ability to use
|
|
|
|
C(filter) as this is provided by a simpler implementation of the module.
|
2016-02-05 18:03:07 +01:00
|
|
|
- If the target host is Windows you can now use C(fact_path). Make sure that this path
|
2016-03-16 18:50:31 +01:00
|
|
|
exists on the target host. Files in this path MUST be PowerShell scripts (``*.ps1``) and
|
2016-02-05 18:03:07 +01:00
|
|
|
their output must be formattable in JSON (Ansible will take care of this). Test the
|
|
|
|
output of your scripts.
|
2016-02-26 12:40:43 +01:00
|
|
|
This option was added in Ansible 2.1.
|
2015-06-15 21:53:30 +02:00
|
|
|
author:
|
|
|
|
- "Ansible Core Team"
|
|
|
|
- "Michael DeHaan"
|
2016-02-05 18:03:07 +01:00
|
|
|
- "David O'Brien @david_obrien davidobrien1985"
|
2012-09-17 15:11:04 +02:00
|
|
|
'''
|
|
|
|
|
2013-02-23 21:11:15 +01:00
|
|
|
EXAMPLES = """
|
|
|
|
# Display facts from all hosts and store them indexed by I(hostname) at C(/tmp/facts).
|
|
|
|
ansible all -m setup --tree /tmp/facts
|
|
|
|
|
|
|
|
# Display only facts regarding memory found by ansible on all hosts and output them.
|
|
|
|
ansible all -m setup -a 'filter=ansible_*_mb'
|
|
|
|
|
|
|
|
# Display only facts returned by facter.
|
|
|
|
ansible all -m setup -a 'filter=facter_*'
|
|
|
|
|
2013-12-25 19:50:15 +01:00
|
|
|
# Display only facts about certain interfaces.
|
2013-02-23 21:11:15 +01:00
|
|
|
ansible all -m setup -a 'filter=ansible_eth[0-2]'
|
2016-02-05 18:03:07 +01:00
|
|
|
|
2016-03-14 23:05:20 +01:00
|
|
|
# Restrict additional gathered facts to network and virtual.
|
2016-03-07 21:53:29 +01:00
|
|
|
ansible all -m setup -a 'gather_subset=network,virtual'
|
|
|
|
|
|
|
|
# Do not call puppet facter or ohai even if present.
|
2016-03-14 23:05:20 +01:00
|
|
|
ansible all -m setup -a 'gather_subset=!facter,!ohai'
|
|
|
|
|
|
|
|
# Only collect the minimum amount of facts:
|
|
|
|
ansible all -m setup -a 'gather_subset=!all'
|
2016-03-07 21:53:29 +01:00
|
|
|
|
2016-02-05 18:03:07 +01:00
|
|
|
# Display facts from Windows hosts with custom facts stored in C(C:\\custom_facts).
|
|
|
|
ansible windows -m setup -a "fact_path='c:\\custom_facts'"
|
2013-02-23 21:11:15 +01:00
|
|
|
"""
|
|
|
|
|
2012-06-26 19:49:26 +02:00
|
|
|
|
2012-07-28 23:14:23 +02:00
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
2013-02-20 17:53:14 +01:00
|
|
|
argument_spec = dict(
|
2016-03-14 23:05:20 +01:00
|
|
|
gather_subset=dict(default=["all"], required=False, type='list'),
|
2013-02-20 17:53:14 +01:00
|
|
|
filter=dict(default="*", required=False),
|
2013-06-16 00:31:31 +02:00
|
|
|
fact_path=dict(default='/etc/ansible/facts.d', required=False),
|
2013-02-20 17:53:14 +01:00
|
|
|
),
|
2013-02-04 01:46:25 +01:00
|
|
|
supports_check_mode = True,
|
2012-07-28 23:14:23 +02:00
|
|
|
)
|
2016-03-14 23:05:20 +01:00
|
|
|
data = get_all_facts(module)
|
2012-07-28 23:14:23 +02:00
|
|
|
module.exit_json(**data)
|
|
|
|
|
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 *
|
2014-03-16 21:02:37 +01:00
|
|
|
from ansible.module_utils.facts import *
|
|
|
|
|
2016-03-14 23:05:20 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|