simp-rspec-puppet-facts 3.3.0 → 3.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -0
  3. data/facts/4.2/almalinux-8-x86_64.facts +1366 -0
  4. data/facts/4.2/almalinux-9-x86_64.facts +1335 -0
  5. data/facts/4.2/amazon-2-x86_64.facts +1218 -0
  6. data/facts/4.2/centos-7-x86_64.facts +1267 -0
  7. data/facts/4.2/centos-8-x86_64.facts +1316 -0
  8. data/facts/4.2/centos-9-x86_64.facts +1308 -0
  9. data/facts/4.2/oraclelinux-7-x86_64.facts +1251 -0
  10. data/facts/4.2/oraclelinux-8-x86_64.facts +1307 -0
  11. data/facts/4.2/redhat-7-x86_64.facts +1220 -0
  12. data/facts/4.2/redhat-8-x86_64.facts +1300 -0
  13. data/facts/4.2/redhat-9-x86_64.facts +1312 -0
  14. data/facts/4.2/rocky-8-x86_64.facts +1507 -0
  15. data/facts/4.2/windows-2012_r2-x64.facts +473 -0
  16. data/facts/4.2/windows-2016-x64.facts +517 -0
  17. data/facts/4.2/windows-2019-x64.facts +517 -0
  18. data/facts/4.2/windows-2022-x64.facts +519 -0
  19. data/lib/simp/rspec-puppet-facts.rb +45 -21
  20. data/lib/simp/version.rb +1 -1
  21. data/spec/acceptance/nodesets/almalinux8.yml +23 -0
  22. data/spec/acceptance/nodesets/almalinux9.yml +23 -0
  23. data/spec/acceptance/nodesets/amzn2.yml +23 -0
  24. data/spec/acceptance/nodesets/centos8.yml +1 -1
  25. data/spec/acceptance/nodesets/centos9.yml +23 -0
  26. data/spec/acceptance/nodesets/rhel8.yml +2 -1
  27. data/spec/acceptance/nodesets/rhel9.yml +23 -0
  28. data/spec/acceptance/nodesets/rocky8.yml +1 -1
  29. data/spec/acceptance/nodesets/win_2012r2.yml +12 -2
  30. data/spec/acceptance/nodesets/win_2016.yml +12 -2
  31. data/spec/acceptance/nodesets/win_2019.yml +12 -1
  32. data/spec/acceptance/nodesets/win_2022.yml +38 -0
  33. data/spec/acceptance/suites/default/00_default_spec.rb +7 -3
  34. data/spec/spec_helper_acceptance.rb +32 -1
  35. metadata +94 -50
@@ -0,0 +1,23 @@
1
+ <%
2
+ if ENV['BEAKER_HYPERVISOR']
3
+ hypervisor = ENV['BEAKER_HYPERVISOR']
4
+ else
5
+ hypervisor = 'vagrant'
6
+ end
7
+ -%>
8
+ HOSTS:
9
+ el9.beaker.test:
10
+ roles:
11
+ - linux
12
+ - default
13
+ platform: el-9-x86_64
14
+ box: almalinux/9
15
+ hypervisor: <%= hypervisor %>
16
+
17
+ CONFIG:
18
+ validate: false
19
+ log_level: verbose
20
+ type: aio
21
+ <% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
22
+ puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
23
+ <% end -%>
@@ -0,0 +1,23 @@
1
+ <%
2
+ if ENV['BEAKER_HYPERVISOR']
3
+ hypervisor = ENV['BEAKER_HYPERVISOR']
4
+ else
5
+ hypervisor = 'vagrant'
6
+ end
7
+ -%>
8
+ HOSTS:
9
+ amzn2:
10
+ roles:
11
+ - default
12
+ platform: el-7-x86_64
13
+ box: gbailey/amzn2
14
+ hypervisor: <%= hypervisor %>
15
+
16
+ CONFIG:
17
+ log_level: verbose
18
+ synced_folder : disabled
19
+ type: aio
20
+ vagrant_memsize: 512
21
+ <% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
22
+ puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
23
+ <% end -%>
@@ -11,7 +11,7 @@ HOSTS:
11
11
  - linux
12
12
  - default
13
13
  platform: el-8-x86_64
14
- box: generic/centos8
14
+ box: centos/stream8
15
15
  hypervisor: <%= hypervisor %>
16
16
 
17
17
  CONFIG:
@@ -0,0 +1,23 @@
1
+ <%
2
+ if ENV['BEAKER_HYPERVISOR']
3
+ hypervisor = ENV['BEAKER_HYPERVISOR']
4
+ else
5
+ hypervisor = 'vagrant'
6
+ end
7
+ -%>
8
+ HOSTS:
9
+ el9.beaker.test:
10
+ roles:
11
+ - linux
12
+ - default
13
+ platform: el-9-x86_64
14
+ box: generic/centos9s
15
+ hypervisor: <%= hypervisor %>
16
+
17
+ CONFIG:
18
+ validate: false
19
+ log_level: verbose
20
+ type: aio
21
+ <% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
22
+ puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
23
+ <% end -%>
@@ -8,13 +8,14 @@
8
8
  HOSTS:
9
9
  rhel8:
10
10
  roles:
11
- - default
12
11
  - linux
12
+ - default
13
13
  platform: el-8-x86_64
14
14
  box: generic/rhel8
15
15
  hypervisor: <%= hypervisor %>
16
16
 
17
17
  CONFIG:
18
+ validate: false
18
19
  log_level: verbose
19
20
  type: aio
20
21
  <% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
@@ -0,0 +1,23 @@
1
+ <%
2
+ if ENV['BEAKER_HYPERVISOR']
3
+ hypervisor = ENV['BEAKER_HYPERVISOR']
4
+ else
5
+ hypervisor = 'vagrant'
6
+ end
7
+ -%>
8
+ HOSTS:
9
+ rhel9:
10
+ roles:
11
+ - linux
12
+ - default
13
+ platform: el-9-x86_64
14
+ box: generic/rhel9
15
+ hypervisor: <%= hypervisor %>
16
+
17
+ CONFIG:
18
+ validate: false
19
+ log_level: verbose
20
+ type: aio
21
+ <% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
22
+ puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
23
+ <% end -%>
@@ -11,7 +11,7 @@ HOSTS:
11
11
  - linux
12
12
  - default
13
13
  platform: el-8-x86_64
14
- box: CrunchyData/rocky8
14
+ box: rockylinux/8
15
15
  hypervisor: <%= hypervisor %>
16
16
  # NFS installation is broken
17
17
  synced_folder: disabled
@@ -10,7 +10,7 @@ HOSTS:
10
10
  roles:
11
11
  - windows
12
12
  platform: windows-server-amd64
13
- box: opentable/win-2012r2-standard-amd64-nocm
13
+ box: ferventcoder/win2012r2-x64-nocm
14
14
  hypervisor: <%= hypervisor %>
15
15
  vagrant_memsize: 2048
16
16
  vagrant_cpus: 2
@@ -21,7 +21,17 @@ HOSTS:
21
21
  CONFIG:
22
22
  log_level: verbose
23
23
  type: aio
24
- vagrant_memsize: 256
25
24
  <% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%>
26
25
  puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %>
27
26
  <% end -%>
27
+ ssh:
28
+ keepalive: true
29
+ keepalive_interval: 10
30
+ host_key:
31
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:host_key].join("\n#{' '*6}- ") %>
32
+ kex:
33
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:kex].join("\n#{' '*6}- ") %>
34
+ encryption:
35
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:encryption].join("\n#{' '*6}- ") %>
36
+ hmac:
37
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:hmac].join("\n#{' '*6}- ") %>
@@ -11,7 +11,7 @@ HOSTS:
11
11
  - windows
12
12
  platform: windows-server-amd64
13
13
  box: gusztavvargadr/windows-server
14
- box_version: 1607.0.1909
14
+ box_version: 1607.0.2201
15
15
  hypervisor: <%= hypervisor %>
16
16
  vagrant_memsize: 2048
17
17
  vagrant_cpus: 2
@@ -22,7 +22,17 @@ HOSTS:
22
22
  CONFIG:
23
23
  log_level: verbose
24
24
  type: aio
25
- vagrant_memsize: 256
26
25
  <% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%>
27
26
  puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %>
28
27
  <% end -%>
28
+ ssh:
29
+ keepalive: true
30
+ keepalive_interval: 10
31
+ host_key:
32
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:host_key].join("\n#{' '*6}- ") %>
33
+ kex:
34
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:kex].join("\n#{' '*6}- ") %>
35
+ encryption:
36
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:encryption].join("\n#{' '*6}- ") %>
37
+ hmac:
38
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:hmac].join("\n#{' '*6}- ") %>
@@ -11,6 +11,7 @@ HOSTS:
11
11
  - windows
12
12
  platform: windows-server-amd64
13
13
  box: gusztavvargadr/windows-server
14
+ box_version: 1809.0.2205
14
15
  hypervisor: <%= hypervisor %>
15
16
  vagrant_memsize: 2048
16
17
  vagrant_cpus: 2
@@ -21,7 +22,17 @@ HOSTS:
21
22
  CONFIG:
22
23
  log_level: verbose
23
24
  type: aio
24
- vagrant_memsize: 256
25
25
  <% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%>
26
26
  puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %>
27
27
  <% end -%>
28
+ ssh:
29
+ keepalive: true
30
+ keepalive_interval: 10
31
+ host_key:
32
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:host_key].join("\n#{' '*6}- ") %>
33
+ kex:
34
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:kex].join("\n#{' '*6}- ") %>
35
+ encryption:
36
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:encryption].join("\n#{' '*6}- ") %>
37
+ hmac:
38
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:hmac].join("\n#{' '*6}- ") %>
@@ -0,0 +1,38 @@
1
+ <%
2
+ if ENV['BEAKER_HYPERVISOR']
3
+ hypervisor = ENV['BEAKER_HYPERVISOR']
4
+ else
5
+ hypervisor = 'vagrant'
6
+ end
7
+ -%>
8
+ HOSTS:
9
+ win:
10
+ roles:
11
+ - windows
12
+ platform: windows-server-amd64
13
+ box: gusztavvargadr/windows-server
14
+ box_version: 2102.0.2205
15
+ hypervisor: <%= hypervisor %>
16
+ vagrant_memsize: 2048
17
+ vagrant_cpus: 2
18
+ user: vagrant
19
+ communicator: winrm
20
+ is_cygwin: false
21
+
22
+ CONFIG:
23
+ log_level: verbose
24
+ type: aio
25
+ <% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%>
26
+ puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %>
27
+ <% end -%>
28
+ ssh:
29
+ keepalive: true
30
+ keepalive_interval: 10
31
+ host_key:
32
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:host_key].join("\n#{' '*6}- ") %>
33
+ kex:
34
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:kex].join("\n#{' '*6}- ") %>
35
+ encryption:
36
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:encryption].join("\n#{' '*6}- ") %>
37
+ hmac:
38
+ - <%= Net::SSH::Transport::Algorithms::ALGORITHMS[:hmac].join("\n#{' '*6}- ") %>
@@ -37,10 +37,14 @@ describe 'look out muppets' do
37
37
  end
38
38
 
39
39
  it 'should collect valid fact data' do
40
- # Stupid RSpec tricks
41
- output = on(host, 'puppet facts --render-as json').stdout
40
+ output = on(host, 'puppet facts --render-as json').stdout.lines.last
42
41
 
43
- expect{@output << JSON.parse(output)['values']}.to_not raise_error
42
+ expect do
43
+ parsed_output = JSON.parse(output)
44
+
45
+ # Something changed in the puppet facts output so handle both cases
46
+ @output.push(parsed_output['values'] || parsed_output)
47
+ end.to_not raise_error
44
48
  end
45
49
 
46
50
  # This should work regardless of OS
@@ -4,7 +4,6 @@ require 'yaml'
4
4
  require 'simp/beaker_helpers'
5
5
  include Simp::BeakerHelpers
6
6
 
7
- require 'beaker/puppet_install_helper'
8
7
  require 'beaker-windows'
9
8
  include BeakerWindows::Path
10
9
  include BeakerWindows::Powershell
@@ -12,14 +11,46 @@ include BeakerWindows::Registry
12
11
  include BeakerWindows::WindowsFeature
13
12
 
14
13
  unless ENV['BEAKER_provision'] == 'no'
14
+ to_skip = []
15
+
16
+ facter_ng = ( ENV['BEAKER_facter_ng'] == 'yes' ? true : false )
17
+
15
18
  hosts.each do |host|
16
19
  # Install Puppet
17
20
  if host.is_pe?
18
21
  install_pe
22
+ elsif ENV['FACTER_GEM_VERSION']
23
+ begin
24
+ install_puppet_from_gem_on(
25
+ host,
26
+ version: ENV['PUPPET_VERSION'],
27
+ facter_version: ENV['FACTER_GEM_VERSION']
28
+ )
29
+
30
+ # Make scaffold dirs?
31
+ code_dir = on(host, 'puppet config print codedir').stdout.strip
32
+
33
+ host.mkdir_p("#{code_dir}/modules")
34
+ rescue => e
35
+ puts "#{host} does not support installing puppet from Gem...skipping"
36
+ puts e
37
+
38
+ to_skip << host
39
+
40
+ next
41
+ end
19
42
  else
20
43
  install_puppet
44
+
45
+ if facter_ng
46
+ on(host, 'puppet config set facterng true')
47
+ end
21
48
  end
22
49
  end
50
+
51
+ to_skip.each do |host|
52
+ hosts.delete(host)
53
+ end
23
54
  end
24
55
 
25
56
  hosts.each do |host|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simp-rspec-puppet-facts
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Tessmer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-06-17 00:00:00.000000000 Z
12
+ date: 2022-06-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec-puppet-facts
@@ -90,7 +90,7 @@ dependencies:
90
90
  version: 2.5.0
91
91
  - - "<"
92
92
  - !ruby/object:Gem::Version
93
- version: '3.0'
93
+ version: '5.0'
94
94
  type: :runtime
95
95
  prerelease: false
96
96
  version_requirements: !ruby/object:Gem::Requirement
@@ -100,7 +100,7 @@ dependencies:
100
100
  version: 2.5.0
101
101
  - - "<"
102
102
  - !ruby/object:Gem::Version
103
- version: '3.0'
103
+ version: '5.0'
104
104
  - !ruby/object:Gem::Dependency
105
105
  name: pry
106
106
  requirement: !ruby/object:Gem::Requirement
@@ -171,6 +171,22 @@ files:
171
171
  - facts/3.6/oraclelinux-7-x86_64.facts
172
172
  - facts/3.6/redhat-6-x86_64.facts
173
173
  - facts/3.6/redhat-7-x86_64.facts
174
+ - facts/4.2/almalinux-8-x86_64.facts
175
+ - facts/4.2/almalinux-9-x86_64.facts
176
+ - facts/4.2/amazon-2-x86_64.facts
177
+ - facts/4.2/centos-7-x86_64.facts
178
+ - facts/4.2/centos-8-x86_64.facts
179
+ - facts/4.2/centos-9-x86_64.facts
180
+ - facts/4.2/oraclelinux-7-x86_64.facts
181
+ - facts/4.2/oraclelinux-8-x86_64.facts
182
+ - facts/4.2/redhat-7-x86_64.facts
183
+ - facts/4.2/redhat-8-x86_64.facts
184
+ - facts/4.2/redhat-9-x86_64.facts
185
+ - facts/4.2/rocky-8-x86_64.facts
186
+ - facts/4.2/windows-2012_r2-x64.facts
187
+ - facts/4.2/windows-2016-x64.facts
188
+ - facts/4.2/windows-2019-x64.facts
189
+ - facts/4.2/windows-2022-x64.facts
174
190
  - facts/Gemfile
175
191
  - facts/Vagrantfile
176
192
  - facts/puppetfiles/Puppetfile.6.0.0-0
@@ -186,16 +202,22 @@ files:
186
202
  - lib/simp-rspec-puppet-facts.rb
187
203
  - lib/simp/rspec-puppet-facts.rb
188
204
  - lib/simp/version.rb
205
+ - spec/acceptance/nodesets/almalinux8.yml
206
+ - spec/acceptance/nodesets/almalinux9.yml
207
+ - spec/acceptance/nodesets/amzn2.yml
189
208
  - spec/acceptance/nodesets/centos7.yml
190
209
  - spec/acceptance/nodesets/centos8.yml
210
+ - spec/acceptance/nodesets/centos9.yml
191
211
  - spec/acceptance/nodesets/oel7.yml
192
212
  - spec/acceptance/nodesets/oel8.yml
193
213
  - spec/acceptance/nodesets/rhel7.yml
194
214
  - spec/acceptance/nodesets/rhel8.yml
215
+ - spec/acceptance/nodesets/rhel9.yml
195
216
  - spec/acceptance/nodesets/rocky8.yml
196
217
  - spec/acceptance/nodesets/win_2012r2.yml
197
218
  - spec/acceptance/nodesets/win_2016.yml
198
219
  - spec/acceptance/nodesets/win_2019.yml
220
+ - spec/acceptance/nodesets/win_2022.yml
199
221
  - spec/acceptance/suites/default/00_default_spec.rb
200
222
  - spec/acceptance/suites/default/nodesets
201
223
  - spec/data_normalization_spec.rb
@@ -231,66 +253,88 @@ specification_version: 4
231
253
  summary: standard SIMP facts fixtures for Puppet
232
254
  test_files:
233
255
  - Rakefile
234
- - spec/fixtures/metadata.json
235
- - spec/fixtures/metadata.json_with_missing_operatingsystem_support
236
- - spec/simp_rspec_puppet_facts_spec.rb
237
- - spec/spec_helper_acceptance.rb
238
- - spec/acceptance/suites/default/nodesets
239
- - spec/acceptance/suites/default/00_default_spec.rb
256
+ - spec/acceptance/nodesets/win_2022.yml
257
+ - spec/acceptance/nodesets/amzn2.yml
258
+ - spec/acceptance/nodesets/oel8.yml
259
+ - spec/acceptance/nodesets/rhel7.yml
240
260
  - spec/acceptance/nodesets/centos7.yml
241
- - spec/acceptance/nodesets/win_2012r2.yml
242
- - spec/acceptance/nodesets/centos8.yml
243
261
  - spec/acceptance/nodesets/rocky8.yml
244
- - spec/acceptance/nodesets/win_2019.yml
245
- - spec/acceptance/nodesets/oel7.yml
262
+ - spec/acceptance/nodesets/rhel9.yml
263
+ - spec/acceptance/nodesets/almalinux8.yml
264
+ - spec/acceptance/nodesets/centos8.yml
265
+ - spec/acceptance/nodesets/win_2012r2.yml
246
266
  - spec/acceptance/nodesets/win_2016.yml
247
- - spec/acceptance/nodesets/oel8.yml
267
+ - spec/acceptance/nodesets/almalinux9.yml
268
+ - spec/acceptance/nodesets/win_2019.yml
248
269
  - spec/acceptance/nodesets/rhel8.yml
249
- - spec/acceptance/nodesets/rhel7.yml
250
- - spec/data_normalization_spec.rb
270
+ - spec/acceptance/nodesets/oel7.yml
271
+ - spec/acceptance/nodesets/centos9.yml
272
+ - spec/acceptance/suites/default/00_default_spec.rb
273
+ - spec/acceptance/suites/default/nodesets
251
274
  - spec/spec_helper.rb
252
- - facts/scripts/gce_scrub_data/redhat-7-x86_64.scrub.yaml
253
- - facts/scripts/gce_scrub_data/centos-6-x86_64.scrub.yaml
254
- - facts/scripts/gce_scrub_data/oraclelinux-6-x86_64.scrub.yaml
255
- - facts/scripts/gce_scrub_data/redhat-6-x86_64.scrub.yaml
256
- - facts/scripts/gce_scrub_data/centos-7-x86_64.scrub.yaml
257
- - facts/scripts/gce_scrub_data/oraclelinux-7-x86_64.scrub.yaml
258
- - facts/scripts/get_facts.rb
259
- - facts/scripts/gce_scrub_data.rb
260
- - facts/scripts/get_facts_for_each_facter.sh
261
- - facts/puppetfiles/Puppetfile.6.0.0-0
275
+ - spec/data_normalization_spec.rb
276
+ - spec/spec_helper_acceptance.rb
277
+ - spec/fixtures/metadata.json_with_missing_operatingsystem_support
278
+ - spec/fixtures/metadata.json
279
+ - spec/simp_rspec_puppet_facts_spec.rb
262
280
  - facts/3.6/centos-6-x86_64.facts
281
+ - facts/3.6/redhat-6-x86_64.facts
263
282
  - facts/3.6/oraclelinux-7-x86_64.facts
264
- - facts/3.6/centos-7-x86_64.facts
265
283
  - facts/3.6/oraclelinux-6-x86_64.facts
266
- - facts/3.6/amazon-2-x86_64.facts
267
- - facts/3.6/redhat-6-x86_64.facts
268
284
  - facts/3.6/redhat-7-x86_64.facts
285
+ - facts/3.6/amazon-2-x86_64.facts
286
+ - facts/3.6/centos-7-x86_64.facts
287
+ - facts/puppetfiles/Puppetfile.6.0.0-0
288
+ - facts/Gemfile
289
+ - facts/Vagrantfile
290
+ - facts/2.5/windows-2012-r2-x86_64.facts
291
+ - facts/2.5/centos-8-x86_64.facts
292
+ - facts/2.5/rocky-8-x86_64.facts
293
+ - facts/2.5/centos-6-x86_64.facts
294
+ - facts/2.5/windows-2016-x86_64.facts
295
+ - facts/2.5/redhat-6-x86_64.facts
296
+ - facts/2.5/oraclelinux-8-x86_64.facts
297
+ - facts/2.5/oraclelinux-7-x86_64.facts
298
+ - facts/2.5/oraclelinux-6-x86_64.facts
299
+ - facts/2.5/windows-2019-x86_64.facts
300
+ - facts/2.5/redhat-7-x86_64.facts
301
+ - facts/2.5/redhat-8-x86_64.facts
302
+ - facts/2.5/amazon-2-x86_64.facts
303
+ - facts/2.5/centos-7-x86_64.facts
269
304
  - facts/3.5/centos-6-x86_64.facts
305
+ - facts/3.5/redhat-6-x86_64.facts
270
306
  - facts/3.5/oraclelinux-7-x86_64.facts
271
- - facts/3.5/centos-7-x86_64.facts
272
307
  - facts/3.5/oraclelinux-6-x86_64.facts
273
- - facts/3.5/redhat-6-x86_64.facts
274
308
  - facts/3.5/redhat-7-x86_64.facts
309
+ - facts/3.5/centos-7-x86_64.facts
310
+ - facts/4.2/almalinux-9-x86_64.facts
311
+ - facts/4.2/windows-2016-x64.facts
312
+ - facts/4.2/centos-8-x86_64.facts
313
+ - facts/4.2/rocky-8-x86_64.facts
314
+ - facts/4.2/almalinux-8-x86_64.facts
315
+ - facts/4.2/windows-2022-x64.facts
316
+ - facts/4.2/oraclelinux-8-x86_64.facts
317
+ - facts/4.2/windows-2012_r2-x64.facts
318
+ - facts/4.2/oraclelinux-7-x86_64.facts
319
+ - facts/4.2/centos-9-x86_64.facts
320
+ - facts/4.2/redhat-7-x86_64.facts
321
+ - facts/4.2/windows-2019-x64.facts
322
+ - facts/4.2/redhat-9-x86_64.facts
323
+ - facts/4.2/redhat-8-x86_64.facts
324
+ - facts/4.2/amazon-2-x86_64.facts
325
+ - facts/4.2/centos-7-x86_64.facts
326
+ - facts/scripts/get_facts.rb
327
+ - facts/scripts/gce_scrub_data/oraclelinux-6-x86_64.scrub.yaml
328
+ - facts/scripts/gce_scrub_data/centos-6-x86_64.scrub.yaml
329
+ - facts/scripts/gce_scrub_data/oraclelinux-7-x86_64.scrub.yaml
330
+ - facts/scripts/gce_scrub_data/redhat-7-x86_64.scrub.yaml
331
+ - facts/scripts/gce_scrub_data/centos-7-x86_64.scrub.yaml
332
+ - facts/scripts/gce_scrub_data/redhat-6-x86_64.scrub.yaml
333
+ - facts/scripts/get_facts_for_each_facter.sh
334
+ - facts/scripts/gce_scrub_data.rb
275
335
  - facts/3.4/centos-6-x86_64.facts
336
+ - facts/3.4/redhat-6-x86_64.facts
276
337
  - facts/3.4/oraclelinux-7-x86_64.facts
277
- - facts/3.4/centos-7-x86_64.facts
278
338
  - facts/3.4/oraclelinux-6-x86_64.facts
279
- - facts/3.4/redhat-6-x86_64.facts
280
339
  - facts/3.4/redhat-7-x86_64.facts
281
- - facts/2.5/windows-2019-x86_64.facts
282
- - facts/2.5/centos-6-x86_64.facts
283
- - facts/2.5/oraclelinux-7-x86_64.facts
284
- - facts/2.5/centos-7-x86_64.facts
285
- - facts/2.5/oraclelinux-6-x86_64.facts
286
- - facts/2.5/amazon-2-x86_64.facts
287
- - facts/2.5/redhat-6-x86_64.facts
288
- - facts/2.5/windows-2016-x86_64.facts
289
- - facts/2.5/windows-2012-r2-x86_64.facts
290
- - facts/2.5/oraclelinux-8-x86_64.facts
291
- - facts/2.5/rocky-8-x86_64.facts
292
- - facts/2.5/centos-8-x86_64.facts
293
- - facts/2.5/redhat-8-x86_64.facts
294
- - facts/2.5/redhat-7-x86_64.facts
295
- - facts/Vagrantfile
296
- - facts/Gemfile
340
+ - facts/3.4/centos-7-x86_64.facts