1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Update list of provided facts for 0.7

This commit is contained in:
Michael DeHaan 2012-09-04 21:40:49 -04:00
parent 4d003127fa
commit 151a9b385d

View file

@ -12,67 +12,116 @@ Ansible provides many 'facts' about the system, automatically.
Some of the variables that are supplied are listed below. These in particular Some of the variables that are supplied are listed below. These in particular
are from a VMWare Fusion 4 VM running CentOS 6.2:: are from a VMWare Fusion 4 VM running CentOS 6.2::
"ansible_architecture": "x86_64", "ansible_facts": {
"ansible_distribution": "CentOS", "ansible_all_ipv4_addresses": [
"ansible_distribution_release": "Final", "192.168.144.180",
"ansible_distribution_version": "6.2", "192.168.122.1"
"ansible_eth0": { ],
"ipv4": { "ansible_all_ipv6_addresses": [
"address": "REDACTED", "ffff::fff:ffff:ffff:ffff"
"netmask": "255.255.255.0" ],
}, "ansible_architecture": "x86_64",
"ipv6": [ "ansible_bios_date": "06/02/2011",
{ "ansible_bios_version": "6.00",
"address": "REDACTED", "ansible_default_ipv4": {
"prefix": "64", "address": "192.168.144.180",
"scope": "link" "alias": "eth0",
} "gateway": "192.168.144.2",
], "interface": "eth0",
"macaddress": "REDACTED" "macaddress": "AA:BB:CC:DD:EE:FF",
}, "mtu": "1500",
"ansible_form_factor": "Other", "netmask": "255.255.255.0",
"ansible_fqdn": "localhost.localdomain", "network": "192.168.144.0",
"ansible_hostname": "localhost", "type": "ether"
"ansible_interfaces": [ },
"lo", "ansible_default_ipv6": {},
"eth0" "ansible_distribution": "CentOS",
], "ansible_distribution_release": "Final",
"ansible_kernel": "2.6.32-220.2.1.el6.x86_64", "ansible_distribution_version": "6.2",
"ansible_lo": { "ansible_eth0": {
"ipv4": { "device": "eth0",
"address": "127.0.0.1", "ipv4": {
"netmask": "255.0.0.0" "address": "192.168.144.180",
}, "netmask": "255.255.255.0",
"ipv6": [ "network": "192.16.144.0"
{ },
"address": "::1", "ipv6": [
"prefix": "128", {
"scope": "host" "address": "ffff::fff:ffff:ffff:ffff",
} "prefix": "64",
], "scope": "link"
"ansible_machine": "x86_64", }
"ansible_memfree_mb": 89, ],
"ansible_memtotal_mb": 993, "macaddress": "00:0c:29:b6:a2:62",
"ansible_processor": [ "mtu": "1500",
"Intel(R) Core(TM) i7-2677M CPU @ 1.80GHz" "type": "ether"
], },
"ansible_processor_cores": "NA", "ansible_form_factor": "Other",
"ansible_processor_count": 1, "ansible_fqdn": "localhost.localdomain",
"ansible_product_name": "VMware Virtual Platform", "ansible_hostname": "localhost",
"ansible_product_serial": "REDACTED", "ansible_interfaces": [
"ansible_product_uuid": "REDACTED", "lo",
"ansible_product_version": "None", "virbr0",
"ansible_python_version": "2.6.6", "eth0"
"ansible_product_version": "None", ],
"ansible_python_version": "2.6.6", "ansible_kernel": "2.6.32-220.2.1.el6.x86_64",
"ansible_ssh_host_key_dsa_public": REDACTED", "ansible_lo": {
"ansible_ssh_host_key_rsa_public": "REDACTED", "device": "lo",
"ansible_swapfree_mb": 1822, "ipv4": {
"ansible_swaptotal_mb": 2015, "address": "127.0.0.1",
"ansible_system": "Linux", "netmask": "255.0.0.0",
"ansible_system_vendor": "VMware, Inc.", "network": "127.0.0.0"
"ansible_virtualization_role": "None", },
"ansible_virtualization_type": "None", "ipv6": [
{
"address": "::1",
"prefix": "128",
"scope": "host"
}
],
"macaddress": "00:00:00:00:00:00",
"mtu": "16436",
"type": "loopback"
},
"ansible_machine": "x86_64",
"ansible_memfree_mb": 166,
"ansible_memtotal_mb": 993,
"ansible_processor": [
"Intel(R) Core(TM) i7-2677M CPU @ 1.80GHz"
],
"ansible_processor_cores": "NA",
"ansible_processor_count": 1,
"ansible_product_name": "VMware Virtual Platform",
"ansible_product_serial": "REDACTED",
"ansible_product_uuid": "REDACTED",
"ansible_product_version": "None",
"ansible_python_version": "2.6.6",
"ansible_selinux": {
"config_mode": "enforcing",
"mode": "permissive",
"policyvers": 24,
"status": "enabled",
"type": "targeted"
},
"ansible_ssh_host_key_dsa_public": "REDACTED",
"ansible_ssh_host_key_rsa_public": "REDACTED",
"ansible_swapfree_mb": 1933,
"ansible_swaptotal_mb": 2015,
"ansible_system": "Linux",
"ansible_system_vendor": "VMware, Inc.",
"ansible_virbr0": {
"device": "virbr0",
"ipv4": {
"address": "192.168.122.1",
"netmask": "255.255.255.0",
"network": "192.168.122.0"
},
"macaddress": "AA:BB:CC:DD:EE:FF",
"mtu": "1500",
"type": "ether"
},
"ansible_virtualization_role": "guest",
"ansible_virtualization_type": "VMware",
More ansible facts will be added with successive releases. More ansible facts will be added with successive releases.