facterdb 1.21.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +17 -0
  3. data/.github/workflows/release.yml +3 -3
  4. data/.github/workflows/test.yml +28 -5
  5. data/.rubocop.yml +5 -0
  6. data/.rubocop_todo.yml +239 -0
  7. data/CHANGELOG.md +16 -0
  8. data/Gemfile +1 -5
  9. data/README.md +124 -122
  10. data/Rakefile +56 -51
  11. data/facterdb.gemspec +7 -7
  12. data/facts/4.1/centos-7-x86_64.facts +582 -0
  13. data/facts/4.1/debian-10-x86_64.facts +519 -0
  14. data/facts/4.2/debian-12-i386.facts +593 -0
  15. data/facts/4.2/debian-12-x86_64.facts +593 -0
  16. data/facts/4.2/fedora-38-x86_64.facts +656 -0
  17. data/facts/4.3/almalinux-8-x86_64.facts +551 -0
  18. data/facts/4.3/almalinux-9-x86_64.facts +525 -0
  19. data/facts/4.3/centos-7-x86_64.facts +592 -0
  20. data/facts/4.3/debian-10-x86_64.facts +526 -0
  21. data/facts/4.3/debian-11-x86_64.facts +521 -0
  22. data/facts/4.3/debian-12-i386.facts +593 -0
  23. data/facts/4.3/debian-12-x86_64.facts +593 -0
  24. data/facts/4.3/fedora-36-x86_64.facts +507 -0
  25. data/facts/4.3/fedora-37-x86_64.facts +512 -0
  26. data/facts/4.3/fedora-38-x86_64.facts +656 -0
  27. data/facts/4.3/opensuse-15-x86_64.facts +533 -0
  28. data/facts/4.3/redhat-8-x86_64.facts +526 -0
  29. data/facts/4.3/rocky-8-x86_64.facts +545 -0
  30. data/facts/4.3/rocky-9-x86_64.facts +626 -0
  31. data/facts/4.3/sles-12-x86_64.facts +908 -0
  32. data/facts/4.3/ubuntu-18.04-x86_64.facts +557 -0
  33. data/facts/4.3/ubuntu-20.04-x86_64.facts +647 -0
  34. data/facts/4.3/ubuntu-22.04-x86_64.facts +655 -0
  35. data/facts/4.3/windows-10-x86_64.facts +182 -0
  36. data/facts/4.3/windows-11-x86_64.facts +182 -0
  37. data/facts/4.3/windows-2012 r2-x86_64.facts +179 -0
  38. data/facts/4.3/windows-2012-x86_64.facts +179 -0
  39. data/facts/4.3/windows-2016-core-x86_64.facts +181 -0
  40. data/facts/4.3/windows-2016-x86_64.facts +181 -0
  41. data/facts/4.3/windows-2019-core-x86_64.facts +181 -0
  42. data/facts/4.3/windows-2019-x86_64.facts +181 -0
  43. data/facts/4.3/windows-2022-core-x86_64.facts +183 -0
  44. data/facts/4.3/windows-2022-x86_64.facts +183 -0
  45. data/facts/4.4/almalinux-8-x86_64.facts +551 -0
  46. data/facts/4.4/almalinux-9-x86_64.facts +525 -0
  47. data/facts/4.4/centos-7-x86_64.facts +592 -0
  48. data/facts/4.4/debian-10-x86_64.facts +526 -0
  49. data/facts/4.4/debian-11-x86_64.facts +521 -0
  50. data/facts/4.4/debian-12-i386.facts +593 -0
  51. data/facts/4.4/debian-12-x86_64.facts +593 -0
  52. data/facts/4.4/fedora-36-x86_64.facts +507 -0
  53. data/facts/4.4/fedora-37-x86_64.facts +512 -0
  54. data/facts/4.4/fedora-38-x86_64.facts +656 -0
  55. data/facts/4.4/opensuse-15-x86_64.facts +514 -0
  56. data/facts/4.4/redhat-8-x86_64.facts +526 -0
  57. data/facts/4.4/rocky-8-x86_64.facts +545 -0
  58. data/facts/4.4/rocky-9-x86_64.facts +626 -0
  59. data/facts/4.4/sles-12-x86_64.facts +908 -0
  60. data/facts/4.4/ubuntu-18.04-x86_64.facts +557 -0
  61. data/facts/4.4/ubuntu-20.04-x86_64.facts +647 -0
  62. data/facts/4.4/ubuntu-22.04-x86_64.facts +655 -0
  63. data/facts/4.4/windows-10-x86_64.facts +182 -0
  64. data/facts/4.4/windows-11-x86_64.facts +186 -0
  65. data/facts/4.4/windows-2012 r2-x86_64.facts +179 -0
  66. data/facts/4.4/windows-2012-x86_64.facts +179 -0
  67. data/facts/4.4/windows-2016-core-x86_64.facts +181 -0
  68. data/facts/4.4/windows-2016-x86_64.facts +181 -0
  69. data/facts/4.4/windows-2019-core-x86_64.facts +181 -0
  70. data/facts/4.4/windows-2019-x86_64.facts +181 -0
  71. data/facts/4.4/windows-2022-core-x86_64.facts +183 -0
  72. data/facts/4.4/windows-2022-x86_64.facts +183 -0
  73. data/facts/Gemfile +3 -7
  74. data/facts/Vagrantfile +313 -298
  75. data/facts/get_facts.sh +67 -9
  76. data/lib/facterdb/bin.rb +1 -1
  77. data/lib/facterdb/version.rb +1 -1
  78. data/lib/facterdb.rb +40 -32
  79. data/rakelib/rhel_alts.rake +8 -14
  80. data/spec/facterdb_spec.rb +37 -37
  81. data/spec/facts_spec.rb +13 -7
  82. metadata +84 -6
@@ -0,0 +1,179 @@
1
+ {
2
+ "aio_agent_version": "8.0.0",
3
+ "architecture": "x64",
4
+ "dhcp_servers": {
5
+ "Ethernet": "168.63.129.16",
6
+ "system": "168.63.129.16"
7
+ },
8
+ "dmi": {
9
+ "manufacturer": "American Megatrends Inc.",
10
+ "product": {
11
+ "name": "Virtual Machine",
12
+ "serial_number": "0000-0003-7214-7120-2881-3919-57",
13
+ "uuid": "33A55257-8197-4D55-ACB9-2385F74881FB"
14
+ }
15
+ },
16
+ "domain": "example.com",
17
+ "env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
18
+ "facterversion": "4.4.0",
19
+ "fips_enabled": false,
20
+ "fqdn": "foo.example.com",
21
+ "hardwareisa": "x64",
22
+ "hardwaremodel": "x86_64",
23
+ "hostname": "foo",
24
+ "hypervisors": {
25
+ "hyperv": {
26
+ }
27
+ },
28
+ "id": "foo\\windows",
29
+ "identity": {
30
+ "privileged": true,
31
+ "user": "foo\\windows"
32
+ },
33
+ "interfaces": "Ethernet",
34
+ "ipaddress": "10.138.1.6",
35
+ "ipaddress6": "fe80::a0c7:5ddf:bfec:7803",
36
+ "ipaddress6_Ethernet": "fe80::a0c7:5ddf:bfec:7803",
37
+ "ipaddress_Ethernet": "10.138.1.6",
38
+ "is_virtual": true,
39
+ "kernel": "windows",
40
+ "kernelmajversion": "6.2",
41
+ "kernelrelease": "6.2.9200",
42
+ "kernelversion": "6.2.9200",
43
+ "macaddress": "60:45:BD:D1:22:1D",
44
+ "macaddress_Ethernet": "60:45:BD:D1:22:1D",
45
+ "manufacturer": "American Megatrends Inc.",
46
+ "memory": {
47
+ "system": {
48
+ "available": "14.23 GiB",
49
+ "available_bytes": 15281164288,
50
+ "capacity": "11.05%",
51
+ "total": "16.00 GiB",
52
+ "total_bytes": 17179398144,
53
+ "used": "1.77 GiB",
54
+ "used_bytes": 1898233856
55
+ }
56
+ },
57
+ "memoryfree": "14.23 GiB",
58
+ "memoryfree_mb": 14573.25390625,
59
+ "memorysize": "16.00 GiB",
60
+ "memorysize_mb": 16383.55078125,
61
+ "mtu_Ethernet": 1500,
62
+ "netmask": "255.255.255.0",
63
+ "netmask6": "ffff:ffff:ffff:ffff::",
64
+ "netmask6_Ethernet": "ffff:ffff:ffff:ffff::",
65
+ "netmask_Ethernet": "255.255.255.0",
66
+ "network": "10.138.1.0",
67
+ "network6": "fe80::",
68
+ "network6_Ethernet": "fe80::",
69
+ "network_Ethernet": "10.138.1.0",
70
+ "networking": {
71
+ "dhcp": "168.63.129.16",
72
+ "domain": "example.com",
73
+ "fqdn": "foo.example.com",
74
+ "hostname": "foo",
75
+ "interfaces": {
76
+ "Ethernet": {
77
+ "bindings": [
78
+ {
79
+ "address": "10.138.1.6",
80
+ "netmask": "255.255.255.0",
81
+ "network": "10.138.1.0"
82
+ }
83
+ ],
84
+ "bindings6": [
85
+ {
86
+ "address": "fe80::a0c7:5ddf:bfec:7803",
87
+ "netmask": "ffff:ffff:ffff:ffff::",
88
+ "network": "fe80::",
89
+ "scope6": "link"
90
+ }
91
+ ],
92
+ "dhcp": "168.63.129.16",
93
+ "ip": "10.138.1.6",
94
+ "ip6": "fe80::a0c7:5ddf:bfec:7803",
95
+ "mac": "60:45:BD:D1:22:1D",
96
+ "mtu": 1500,
97
+ "netmask": "255.255.255.0",
98
+ "netmask6": "ffff:ffff:ffff:ffff::",
99
+ "network": "10.138.1.0",
100
+ "network6": "fe80::",
101
+ "scope6": "link"
102
+ }
103
+ },
104
+ "ip": "10.138.1.6",
105
+ "ip6": "fe80::a0c7:5ddf:bfec:7803",
106
+ "mac": "60:45:BD:D1:22:1D",
107
+ "mtu": 1500,
108
+ "netmask": "255.255.255.0",
109
+ "netmask6": "ffff:ffff:ffff:ffff::",
110
+ "network": "10.138.1.0",
111
+ "network6": "fe80::",
112
+ "primary": "Ethernet",
113
+ "scope6": "link"
114
+ },
115
+ "operatingsystem": "windows",
116
+ "operatingsystemmajrelease": "2012",
117
+ "operatingsystemrelease": "2012",
118
+ "os": {
119
+ "architecture": "x64",
120
+ "family": "windows",
121
+ "hardware": "x86_64",
122
+ "name": "windows",
123
+ "release": {
124
+ "full": "2012",
125
+ "major": "2012"
126
+ },
127
+ "windows": {
128
+ "edition_id": "ServerDatacenter",
129
+ "installation_type": "Server",
130
+ "product_name": "Windows Server 2012 Datacenter",
131
+ "system32": "C:\\Windows\\system32"
132
+ }
133
+ },
134
+ "osfamily": "windows",
135
+ "path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Puppet Labs\\Puppet\\bin",
136
+ "physicalprocessorcount": 1,
137
+ "processor0": "Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz",
138
+ "processorcount": 4,
139
+ "processors": {
140
+ "cores": 2,
141
+ "count": 4,
142
+ "isa": "x64",
143
+ "models": [
144
+ "Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz"
145
+ ],
146
+ "physicalcount": 1,
147
+ "threads": 2
148
+ },
149
+ "productname": "Virtual Machine",
150
+ "puppetversion": "8.0.0",
151
+ "ruby": {
152
+ "platform": "x64-mingw32",
153
+ "sitedir": "C:/Program Files/Puppet Labs/Puppet/puppet/lib/ruby/site_ruby/3.2.0",
154
+ "version": "3.2.2"
155
+ },
156
+ "rubyplatform": "x64-mingw32",
157
+ "rubysitedir": "C:/Program Files/Puppet Labs/Puppet/puppet/lib/ruby/site_ruby/3.2.0",
158
+ "rubyversion": "3.2.2",
159
+ "scope6": "link",
160
+ "scope6_Ethernet": "link",
161
+ "serialnumber": "0000-0003-7214-7120-2881-3919-57",
162
+ "system32": "C:\\Windows\\system32",
163
+ "system_uptime": {
164
+ "days": 0,
165
+ "hours": 3,
166
+ "seconds": 11662,
167
+ "uptime": "3:14 hours"
168
+ },
169
+ "timezone": "Coordinated Universal Time",
170
+ "uptime": "3:14 hours",
171
+ "uptime_days": 0,
172
+ "uptime_hours": 3,
173
+ "uptime_seconds": 11662,
174
+ "uuid": "33A55257-8197-4D55-ACB9-2385F74881FB",
175
+ "virtual": "hyperv",
176
+ "windows_edition_id": "ServerDatacenter",
177
+ "windows_installation_type": "Server",
178
+ "windows_product_name": "Windows Server 2012 Datacenter"
179
+ }
@@ -0,0 +1,181 @@
1
+ {
2
+ "aio_agent_version": "8.0.0",
3
+ "architecture": "x64",
4
+ "dhcp_servers": {
5
+ "Ethernet": "168.63.129.16",
6
+ "system": "168.63.129.16"
7
+ },
8
+ "dmi": {
9
+ "manufacturer": "American Megatrends Inc.",
10
+ "product": {
11
+ "name": "Virtual Machine",
12
+ "serial_number": "0000-0006-3582-9108-9874-5679-53",
13
+ "uuid": "583D300E-FE81-4311-AC88-A211E67DA08B"
14
+ }
15
+ },
16
+ "domain": "example.com",
17
+ "env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
18
+ "facterversion": "4.4.0",
19
+ "fips_enabled": false,
20
+ "fqdn": "foo.example.com",
21
+ "hardwareisa": "x64",
22
+ "hardwaremodel": "x86_64",
23
+ "hostname": "foo",
24
+ "hypervisors": {
25
+ "hyperv": {
26
+ }
27
+ },
28
+ "id": "foo\\windows",
29
+ "identity": {
30
+ "privileged": true,
31
+ "user": "foo\\windows"
32
+ },
33
+ "interfaces": "Ethernet",
34
+ "ipaddress": "10.138.1.5",
35
+ "ipaddress6": "fe80::9975:9451:9f80:1964",
36
+ "ipaddress6_Ethernet": "fe80::9975:9451:9f80:1964",
37
+ "ipaddress_Ethernet": "10.138.1.5",
38
+ "is_virtual": true,
39
+ "kernel": "windows",
40
+ "kernelmajversion": "10.0",
41
+ "kernelrelease": "10.0.14393",
42
+ "kernelversion": "10.0.14393",
43
+ "macaddress": "60:45:BD:0F:F0:40",
44
+ "macaddress_Ethernet": "60:45:BD:0F:F0:40",
45
+ "manufacturer": "American Megatrends Inc.",
46
+ "memory": {
47
+ "system": {
48
+ "available": "14.47 GiB",
49
+ "available_bytes": 15540240384,
50
+ "capacity": "9.54%",
51
+ "total": "16.00 GiB",
52
+ "total_bytes": 17179398144,
53
+ "used": "1.53 GiB",
54
+ "used_bytes": 1639157760
55
+ }
56
+ },
57
+ "memoryfree": "14.47 GiB",
58
+ "memoryfree_mb": 14820.328125,
59
+ "memorysize": "16.00 GiB",
60
+ "memorysize_mb": 16383.55078125,
61
+ "mtu_Ethernet": 1500,
62
+ "netmask": "255.255.255.0",
63
+ "netmask6": "ffff:ffff:ffff:ffff::",
64
+ "netmask6_Ethernet": "ffff:ffff:ffff:ffff::",
65
+ "netmask_Ethernet": "255.255.255.0",
66
+ "network": "10.138.1.0",
67
+ "network6": "fe80::",
68
+ "network6_Ethernet": "fe80::",
69
+ "network_Ethernet": "10.138.1.0",
70
+ "networking": {
71
+ "dhcp": "168.63.129.16",
72
+ "domain": "example.com",
73
+ "fqdn": "foo.example.com",
74
+ "hostname": "foo",
75
+ "interfaces": {
76
+ "Ethernet": {
77
+ "bindings": [
78
+ {
79
+ "address": "10.138.1.5",
80
+ "netmask": "255.255.255.0",
81
+ "network": "10.138.1.0"
82
+ }
83
+ ],
84
+ "bindings6": [
85
+ {
86
+ "address": "fe80::9975:9451:9f80:1964",
87
+ "netmask": "ffff:ffff:ffff:ffff::",
88
+ "network": "fe80::",
89
+ "scope6": "link"
90
+ }
91
+ ],
92
+ "dhcp": "168.63.129.16",
93
+ "ip": "10.138.1.5",
94
+ "ip6": "fe80::9975:9451:9f80:1964",
95
+ "mac": "60:45:BD:0F:F0:40",
96
+ "mtu": 1500,
97
+ "netmask": "255.255.255.0",
98
+ "netmask6": "ffff:ffff:ffff:ffff::",
99
+ "network": "10.138.1.0",
100
+ "network6": "fe80::",
101
+ "scope6": "link"
102
+ }
103
+ },
104
+ "ip": "10.138.1.5",
105
+ "ip6": "fe80::9975:9451:9f80:1964",
106
+ "mac": "60:45:BD:0F:F0:40",
107
+ "mtu": 1500,
108
+ "netmask": "255.255.255.0",
109
+ "netmask6": "ffff:ffff:ffff:ffff::",
110
+ "network": "10.138.1.0",
111
+ "network6": "fe80::",
112
+ "primary": "Ethernet",
113
+ "scope6": "link"
114
+ },
115
+ "operatingsystem": "windows",
116
+ "operatingsystemmajrelease": "2016",
117
+ "operatingsystemrelease": "2016",
118
+ "os": {
119
+ "architecture": "x64",
120
+ "family": "windows",
121
+ "hardware": "x86_64",
122
+ "name": "windows",
123
+ "release": {
124
+ "full": "2016",
125
+ "major": "2016"
126
+ },
127
+ "windows": {
128
+ "edition_id": "ServerDatacenter",
129
+ "installation_type": "Server Core",
130
+ "product_name": "Windows Server 2016 Datacenter",
131
+ "release_id": "1607",
132
+ "system32": "C:\\Windows\\system32"
133
+ }
134
+ },
135
+ "osfamily": "windows",
136
+ "path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Users\\windows\\AppData\\Local\\Microsoft\\WindowsApps",
137
+ "physicalprocessorcount": 1,
138
+ "processor0": "Intel(R) Xeon(R) Platinum 8370C CPU @ 2.80GHz",
139
+ "processorcount": 4,
140
+ "processors": {
141
+ "cores": 2,
142
+ "count": 4,
143
+ "isa": "x64",
144
+ "models": [
145
+ "Intel(R) Xeon(R) Platinum 8370C CPU @ 2.80GHz"
146
+ ],
147
+ "physicalcount": 1,
148
+ "threads": 2
149
+ },
150
+ "productname": "Virtual Machine",
151
+ "puppetversion": "8.0.0",
152
+ "ruby": {
153
+ "platform": "x64-mingw32",
154
+ "sitedir": "C:/Program Files/Puppet Labs/Puppet/puppet/lib/ruby/site_ruby/3.2.0",
155
+ "version": "3.2.2"
156
+ },
157
+ "rubyplatform": "x64-mingw32",
158
+ "rubysitedir": "C:/Program Files/Puppet Labs/Puppet/puppet/lib/ruby/site_ruby/3.2.0",
159
+ "rubyversion": "3.2.2",
160
+ "scope6": "link",
161
+ "scope6_Ethernet": "link",
162
+ "serialnumber": "0000-0006-3582-9108-9874-5679-53",
163
+ "system32": "C:\\Windows\\system32",
164
+ "system_uptime": {
165
+ "days": 0,
166
+ "hours": 3,
167
+ "seconds": 12583,
168
+ "uptime": "3:29 hours"
169
+ },
170
+ "timezone": "Coordinated Universal Time",
171
+ "uptime": "3:29 hours",
172
+ "uptime_days": 0,
173
+ "uptime_hours": 3,
174
+ "uptime_seconds": 12583,
175
+ "uuid": "583D300E-FE81-4311-AC88-A211E67DA08B",
176
+ "virtual": "hyperv",
177
+ "windows_edition_id": "ServerDatacenter",
178
+ "windows_installation_type": "Server Core",
179
+ "windows_product_name": "Windows Server 2016 Datacenter",
180
+ "windows_release_id": "1607"
181
+ }
@@ -0,0 +1,181 @@
1
+ {
2
+ "aio_agent_version": "8.0.0",
3
+ "architecture": "x64",
4
+ "dhcp_servers": {
5
+ "Ethernet": "168.63.129.16",
6
+ "system": "168.63.129.16"
7
+ },
8
+ "dmi": {
9
+ "manufacturer": "American Megatrends Inc.",
10
+ "product": {
11
+ "name": "Virtual Machine",
12
+ "serial_number": "0000-0004-6054-4044-0234-4300-81",
13
+ "uuid": "3FE9CFAE-0264-4E81-B722-29D5F9026CD8"
14
+ }
15
+ },
16
+ "domain": "example.com",
17
+ "env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
18
+ "facterversion": "4.4.0",
19
+ "fips_enabled": false,
20
+ "fqdn": "foo.example.com",
21
+ "hardwareisa": "x64",
22
+ "hardwaremodel": "x86_64",
23
+ "hostname": "foo",
24
+ "hypervisors": {
25
+ "hyperv": {
26
+ }
27
+ },
28
+ "id": "foo\\windows",
29
+ "identity": {
30
+ "privileged": true,
31
+ "user": "foo\\windows"
32
+ },
33
+ "interfaces": "Ethernet",
34
+ "ipaddress": "10.138.1.6",
35
+ "ipaddress6": "fe80::8dd6:a4af:1f7d:8c62",
36
+ "ipaddress6_Ethernet": "fe80::8dd6:a4af:1f7d:8c62",
37
+ "ipaddress_Ethernet": "10.138.1.6",
38
+ "is_virtual": true,
39
+ "kernel": "windows",
40
+ "kernelmajversion": "10.0",
41
+ "kernelrelease": "10.0.14393",
42
+ "kernelversion": "10.0.14393",
43
+ "macaddress": "60:45:BD:F1:D9:88",
44
+ "macaddress_Ethernet": "60:45:BD:F1:D9:88",
45
+ "manufacturer": "American Megatrends Inc.",
46
+ "memory": {
47
+ "system": {
48
+ "available": "13.82 GiB",
49
+ "available_bytes": 14839132160,
50
+ "capacity": "13.62%",
51
+ "total": "16.00 GiB",
52
+ "total_bytes": 17179398144,
53
+ "used": "2.18 GiB",
54
+ "used_bytes": 2340265984
55
+ }
56
+ },
57
+ "memoryfree": "13.82 GiB",
58
+ "memoryfree_mb": 14151.69921875,
59
+ "memorysize": "16.00 GiB",
60
+ "memorysize_mb": 16383.55078125,
61
+ "mtu_Ethernet": 1500,
62
+ "netmask": "255.255.255.0",
63
+ "netmask6": "ffff:ffff:ffff:ffff::",
64
+ "netmask6_Ethernet": "ffff:ffff:ffff:ffff::",
65
+ "netmask_Ethernet": "255.255.255.0",
66
+ "network": "10.138.1.0",
67
+ "network6": "fe80::",
68
+ "network6_Ethernet": "fe80::",
69
+ "network_Ethernet": "10.138.1.0",
70
+ "networking": {
71
+ "dhcp": "168.63.129.16",
72
+ "domain": "example.com",
73
+ "fqdn": "foo.example.com",
74
+ "hostname": "foo",
75
+ "interfaces": {
76
+ "Ethernet": {
77
+ "bindings": [
78
+ {
79
+ "address": "10.138.1.6",
80
+ "netmask": "255.255.255.0",
81
+ "network": "10.138.1.0"
82
+ }
83
+ ],
84
+ "bindings6": [
85
+ {
86
+ "address": "fe80::8dd6:a4af:1f7d:8c62",
87
+ "netmask": "ffff:ffff:ffff:ffff::",
88
+ "network": "fe80::",
89
+ "scope6": "link"
90
+ }
91
+ ],
92
+ "dhcp": "168.63.129.16",
93
+ "ip": "10.138.1.6",
94
+ "ip6": "fe80::8dd6:a4af:1f7d:8c62",
95
+ "mac": "60:45:BD:F1:D9:88",
96
+ "mtu": 1500,
97
+ "netmask": "255.255.255.0",
98
+ "netmask6": "ffff:ffff:ffff:ffff::",
99
+ "network": "10.138.1.0",
100
+ "network6": "fe80::",
101
+ "scope6": "link"
102
+ }
103
+ },
104
+ "ip": "10.138.1.6",
105
+ "ip6": "fe80::8dd6:a4af:1f7d:8c62",
106
+ "mac": "60:45:BD:F1:D9:88",
107
+ "mtu": 1500,
108
+ "netmask": "255.255.255.0",
109
+ "netmask6": "ffff:ffff:ffff:ffff::",
110
+ "network": "10.138.1.0",
111
+ "network6": "fe80::",
112
+ "primary": "Ethernet",
113
+ "scope6": "link"
114
+ },
115
+ "operatingsystem": "windows",
116
+ "operatingsystemmajrelease": "2016",
117
+ "operatingsystemrelease": "2016",
118
+ "os": {
119
+ "architecture": "x64",
120
+ "family": "windows",
121
+ "hardware": "x86_64",
122
+ "name": "windows",
123
+ "release": {
124
+ "full": "2016",
125
+ "major": "2016"
126
+ },
127
+ "windows": {
128
+ "edition_id": "ServerDatacenter",
129
+ "installation_type": "Server",
130
+ "product_name": "Windows Server 2016 Datacenter",
131
+ "release_id": "1607",
132
+ "system32": "C:\\Windows\\system32"
133
+ }
134
+ },
135
+ "osfamily": "windows",
136
+ "path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Users\\windows\\AppData\\Local\\Microsoft\\WindowsApps;",
137
+ "physicalprocessorcount": 1,
138
+ "processor0": "Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz",
139
+ "processorcount": 4,
140
+ "processors": {
141
+ "cores": 2,
142
+ "count": 4,
143
+ "isa": "x64",
144
+ "models": [
145
+ "Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz"
146
+ ],
147
+ "physicalcount": 1,
148
+ "threads": 2
149
+ },
150
+ "productname": "Virtual Machine",
151
+ "puppetversion": "8.0.0",
152
+ "ruby": {
153
+ "platform": "x64-mingw32",
154
+ "sitedir": "C:/Program Files/Puppet Labs/Puppet/puppet/lib/ruby/site_ruby/3.2.0",
155
+ "version": "3.2.2"
156
+ },
157
+ "rubyplatform": "x64-mingw32",
158
+ "rubysitedir": "C:/Program Files/Puppet Labs/Puppet/puppet/lib/ruby/site_ruby/3.2.0",
159
+ "rubyversion": "3.2.2",
160
+ "scope6": "link",
161
+ "scope6_Ethernet": "link",
162
+ "serialnumber": "0000-0004-6054-4044-0234-4300-81",
163
+ "system32": "C:\\Windows\\system32",
164
+ "system_uptime": {
165
+ "days": 0,
166
+ "hours": 21,
167
+ "seconds": 77319,
168
+ "uptime": "21:28 hours"
169
+ },
170
+ "timezone": "Coordinated Universal Time",
171
+ "uptime": "21:28 hours",
172
+ "uptime_days": 0,
173
+ "uptime_hours": 21,
174
+ "uptime_seconds": 77319,
175
+ "uuid": "3FE9CFAE-0264-4E81-B722-29D5F9026CD8",
176
+ "virtual": "hyperv",
177
+ "windows_edition_id": "ServerDatacenter",
178
+ "windows_installation_type": "Server",
179
+ "windows_product_name": "Windows Server 2016 Datacenter",
180
+ "windows_release_id": "1607"
181
+ }