관리-도구
편집 파일: gather_facts.cpython-39.opt-1.pyc
a �)g � @ s( d dl mZmZmZ eZdZdZdZdS )� )�absolute_import�division�print_functiona --- module: gather_facts version_added: 2.8 short_description: Gathers facts about remote hosts extends_documentation_fragment: - action_common_attributes - action_common_attributes.facts - action_common_attributes.flow description: - This module takes care of executing the R(configured facts modules,FACTS_MODULES), the default is to use the M(ansible.builtin.setup) module. - 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. options: parallel: description: - A toggle that controls if the fact modules are executed in parallel or serially and in order. This can guarantee the merge order of module facts at the expense of performance. - By default it will be true if more than one fact module is used. type: bool attributes: action: support: full async: details: multiple modules can be executed in parallel or serially, but the action itself will not be async support: partial bypass_host_loop: support: none check_mode: details: since this action should just query the target system info it always runs in check mode support: full diff_mode: support: none facts: support: full platform: details: The action plugin should be able to automatically select the specific platform modules automatically or can be configured manually platforms: all notes: - This is mostly a wrapper around other fact gathering modules. - Options passed into this action must be supported by all the underlying fact modules configured. - Facts returned by each module will be merged, conflicts will favor 'last merged'. Order is not guaranteed, when doing parallel gathering on multiple modules. author: - "Ansible Core Team" z% # depends on the fact module called z� # Display facts from all hosts and store them indexed by hostname at /tmp/facts. # ansible all -m ansible.builtin.gather_facts --tree /tmp/facts N) Z __future__r r r �typeZ __metaclass__Z DOCUMENTATIONZRETURNZEXAMPLES� r r �@/usr/lib/python3.9/site-packages/ansible/modules/gather_facts.py�<module> s 0