facterdb 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/README.md +99 -95
  4. data/Rakefile +6 -1
  5. data/facts/1.6/debian-11-x86_64.facts +57 -0
  6. data/facts/1.6/freebsd-13-x86_64.facts +51 -0
  7. data/facts/1.6/oraclelinux-8-x86_64.facts +59 -0
  8. data/facts/1.7/debian-11-x86_64.facts +74 -0
  9. data/facts/1.7/freebsd-13-x86_64.facts +69 -0
  10. data/facts/1.7/oraclelinux-8-x86_64.facts +82 -0
  11. data/facts/2.0/debian-11-x86_64.facts +76 -0
  12. data/facts/2.0/freebsd-13-x86_64.facts +70 -0
  13. data/facts/2.0/oraclelinux-8-x86_64.facts +82 -0
  14. data/facts/2.1/debian-11-x86_64.facts +84 -0
  15. data/facts/2.1/freebsd-13-x86_64.facts +70 -0
  16. data/facts/2.1/oraclelinux-8-x86_64.facts +92 -0
  17. data/facts/2.2/debian-11-x86_64.facts +115 -0
  18. data/facts/2.2/freebsd-13-x86_64.facts +91 -0
  19. data/facts/2.2/oraclelinux-8-x86_64.facts +115 -0
  20. data/facts/2.3/debian-11-x86_64.facts +116 -0
  21. data/facts/2.3/freebsd-13-x86_64.facts +92 -0
  22. data/facts/2.3/oraclelinux-8-x86_64.facts +143 -0
  23. data/facts/2.4/debian-11-x86_64.facts +118 -0
  24. data/facts/2.4/freebsd-13-x86_64.facts +92 -0
  25. data/facts/2.4/oraclelinux-8-x86_64.facts +160 -0
  26. data/facts/2.5/debian-11-x86_64.facts +118 -0
  27. data/facts/2.5/freebsd-13-x86_64.facts +92 -0
  28. data/facts/2.5/oraclelinux-8-x86_64.facts +160 -0
  29. data/facts/3.11/oraclelinux-8-x86_64.facts +494 -0
  30. data/facts/3.12/oraclelinux-8-x86_64.facts +400 -0
  31. data/facts/3.13/oraclelinux-8-x86_64.facts +406 -0
  32. data/facts/3.14/debian-11-x86_64.facts +508 -0
  33. data/facts/3.14/freebsd-11-x86_64.facts +479 -0
  34. data/facts/3.14/freebsd-12-x86_64.facts +479 -0
  35. data/facts/3.14/freebsd-13-x86_64.facts +475 -0
  36. data/facts/3.14/oraclelinux-8-x86_64.facts +406 -0
  37. data/facts/3.14/rocky-8-x86_64.facts +625 -0
  38. data/facts/4.0/debian-11-x86_64.facts +236 -0
  39. data/facts/4.0/freebsd-11-x86_64.facts +208 -0
  40. data/facts/4.0/freebsd-12-x86_64.facts +208 -0
  41. data/facts/4.0/freebsd-13-x86_64.facts +207 -0
  42. data/facts/4.1/debian-11-x86_64.facts +238 -0
  43. data/facts/4.1/freebsd-11-x86_64.facts +208 -0
  44. data/facts/4.1/freebsd-12-x86_64.facts +208 -0
  45. data/facts/4.1/freebsd-13-x86_64.facts +207 -0
  46. data/facts/4.2/centos-7-x86_64.facts +593 -0
  47. data/facts/4.2/centos-8-x86_64.facts +591 -0
  48. data/facts/4.2/debian-10-x86_64.facts +574 -0
  49. data/facts/4.2/debian-11-x86_64.facts +244 -0
  50. data/facts/4.2/debian-9-x86_64.facts +597 -0
  51. data/facts/4.2/freebsd-11-x86_64.facts +261 -0
  52. data/facts/4.2/freebsd-12-x86_64.facts +261 -0
  53. data/facts/4.2/freebsd-13-x86_64.facts +260 -0
  54. data/facts/4.2/oraclelinux-8-x86_64.facts +591 -0
  55. data/facts/Gemfile +1 -0
  56. data/facts/Vagrantfile +25 -8
  57. data/facts/get_facts.sh +35 -17
  58. data/lib/facterdb/version.rb +1 -1
  59. metadata +52 -2
data/facts/Gemfile CHANGED
@@ -1,6 +1,7 @@
1
1
  source ENV['GEM_SOURCE'] || "https://rubygems.org"
2
2
 
3
3
  gem 'json', :require => false
4
+ gem 'ffi'
4
5
 
5
6
  if facterversion = ENV['FACTER_GEM_VERSION']
6
7
  gem 'facter', facterversion, :require => false
data/facts/Vagrantfile CHANGED
@@ -48,6 +48,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
48
48
  host.vm.provision "shell", path: "get_facts.sh"
49
49
  host.vm.provision "shell", inline: "/sbin/shutdown -h now"
50
50
  end
51
+ config.vm.define "debian-11-x86_64" do |host|
52
+ host.vm.box = "boxomatic/debian-11"
53
+ host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
54
+ host.vm.provision "shell", path: "get_facts.sh"
55
+ host.vm.provision "shell", inline: "/sbin/shutdown -h now"
56
+ end
51
57
  config.vm.define "ubuntu-10.04-x86_64" do |host|
52
58
  host.vm.box = "ubuntu-server-10044-x64-vbox4210-nocm"
53
59
  host.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-10044-x64-vbox4210-nocm.box"
@@ -158,6 +164,14 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
158
164
  host.vm.provision "shell", path: "get_facts.sh"
159
165
  host.vm.provision "shell", inline: "/sbin/shutdown -h now"
160
166
  end
167
+ config.vm.define "rockylinux-8-x86_64" do |host|
168
+ host.vm.box = "https://github.com/anoncam/rocky-linux-vagrant/blob/main/rockylinux.box"
169
+ host.vm.synced_folder ".", "/vagrant"
170
+ host.vm.provision "shell", inline: "dnf -y install wget make gcc net-tools"
171
+ host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
172
+ host.vm.provision "shell", path: "get_facts.sh"
173
+ host.vm.provision "shell", inline: "/sbin/shutdown -h now"
174
+ end
161
175
  config.vm.define "redhat-8-x86_64" do |host|
162
176
  host.vm.box = "generic/rhel8"
163
177
  host.vm.synced_folder ".", "/vagrant"
@@ -305,20 +319,26 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
305
319
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
306
320
  host.vm.provision "shell", path: "get_facts.sh"
307
321
  end
322
+ config.vm.define "freebsd-11-x86_64" do |host|
323
+ host.vm.box = "bento/freebsd-11"
324
+ host.vm.synced_folder ".", "/vagrant"
325
+ host.vm.provision "shell", inline: "pkg install -y bash devel/ruby-gems"
326
+ host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
327
+ host.vm.provision "shell", path: "get_facts.sh"
328
+ host.vm.provision "shell", inline: "/sbin/shutdown -p now"
329
+ end
308
330
  config.vm.define "freebsd-12-x86_64" do |host|
309
- host.vm.box = "bento/freebsd-12.0"
331
+ host.vm.box = "bento/freebsd-12"
310
332
  host.vm.synced_folder ".", "/vagrant"
311
333
  host.vm.provision "shell", inline: "pkg install -y bash devel/ruby-gems"
312
- host.vm.provision "shell", inline: "ln -sf /usr/local/bin/bash /bin/bash"
313
334
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
314
335
  host.vm.provision "shell", path: "get_facts.sh"
315
336
  host.vm.provision "shell", inline: "/sbin/shutdown -p now"
316
337
  end
317
- config.vm.define "freebsd-11-x86_64" do |host|
318
- host.vm.box = "bento/freebsd-11.2"
338
+ config.vm.define "freebsd-13-x86_64" do |host|
339
+ host.vm.box = "bento/freebsd-13"
319
340
  host.vm.synced_folder ".", "/vagrant"
320
341
  host.vm.provision "shell", inline: "pkg install -y bash devel/ruby-gems"
321
- host.vm.provision "shell", inline: "ln -sf /usr/local/bin/bash /bin/bash"
322
342
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
323
343
  host.vm.provision "shell", path: "get_facts.sh"
324
344
  host.vm.provision "shell", inline: "/sbin/shutdown -p now"
@@ -347,7 +367,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
347
367
  . ~/.profile
348
368
 
349
369
  pkg_info -qe 'bash->=0' || pkg_add -I bash
350
- ln -sf /usr/local/bin/bash /bin
351
370
  SCRIPT
352
371
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
353
372
  host.vm.provision "shell", path: "get_facts.sh"
@@ -361,7 +380,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
361
380
  . ~/.profile
362
381
 
363
382
  pkg_info -qe 'bash->=0' || pkg_add -I bash
364
- ln -sf /usr/local/bin/bash /bin
365
383
  SCRIPT
366
384
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
367
385
  host.vm.provision "shell", path: "get_facts.sh"
@@ -376,7 +394,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
376
394
  . ~/.profile
377
395
 
378
396
  pkg_info -qe 'bash->=0' || pkg_add bash
379
- ln -sf /usr/local/bin/bash /bin
380
397
  pkg_add facter puppet-5.5.6
381
398
  ln -sf /usr/local/bin/gem24 /usr/bin/gem
382
399
  ln -sf /usr/local/bin/ruby24 /usr/bin/ruby
data/facts/get_facts.sh CHANGED
@@ -1,4 +1,4 @@
1
- #!/bin/bash
1
+ #!/usr/bin/env bash
2
2
 
3
3
  export PATH=/opt/puppetlabs/bin:$PATH
4
4
 
@@ -31,14 +31,17 @@ elif test -f /usr/bin/apt-get; then
31
31
  elif test -f /etc/redhat-release ; then
32
32
  operatingsystemmajrelease=$(rpm -qf /etc/redhat-release --queryformat '%{version}' | cut -f1 -d'.')
33
33
  case $(rpm -qf /etc/redhat-release --queryformat '%{name}') in
34
+ almalinux*)
35
+ osfamily='AlmaLinux'
36
+ ;;
34
37
  centos*|redhat*)
35
38
  osfamily='RedHat'
36
39
  ;;
37
40
  fedora*)
38
41
  osfamily='Fedora'
39
42
  ;;
40
- almalinux*)
41
- osfamily='AlmaLinux'
43
+ rocky-*)
44
+ osfamily='RockyLinux'
42
45
  ;;
43
46
  *)
44
47
  echo 'Failed to determine osfamily from /etc/redhat-release'
@@ -153,7 +156,7 @@ case "${osfamily}" in
153
156
  yum remove -y puppet6-release
154
157
  fi
155
158
  ;;
156
- 'AlmaLinux')
159
+ 'RockyLinux'|'AlmaLinux')
157
160
  dnf localinstall -y "http://yum.puppetlabs.com/puppet6-release-el-${operatingsystemmajrelease}.noarch.rpm"
158
161
  if dnf install -y puppet-agent; then
159
162
  output_file="/vagrant/$(facter --version | cut -d. -f1,2)/$(facter operatingsystem | tr '[:upper:]' '[:lower:]')-$(facter operatingsystemmajrelease)-$(facter hardwaremodel).facts"
@@ -222,15 +225,20 @@ case "${osfamily}" in
222
225
  ;;
223
226
  'FreeBSD')
224
227
  pkg update
225
- pkg install -y sysutils/puppet5 sysutils/facter sysutils/rubygem-bundler
226
- # something about the pkg update process causes the shared folder mount to
227
- # get into an unusable state, so we remount it here before generating any
228
- # fact sets.
229
- umount /vagrant
230
- mount -t vboxvfs Vagrant /vagrant
231
- output_file="/vagrant/$(facter --version | cut -d. -f1,2)/$(facter operatingsystem | tr '[:upper:]' '[:lower:]')-$(facter operatingsystemmajrelease)-$(facter hardwaremodel).facts"
232
- mkdir -p $(dirname ${output_file})
233
- [ ! -f ${output_file} ] && facter --show-legacy -p -j | tee ${output_file}
228
+ for facter_package in facter rubygem-facter ; do
229
+ pkg install -fy ${facter_package}
230
+
231
+ # something about the pkg update process causes the shared folder mount to
232
+ # get into an unusable state, so we remount it here before generating any
233
+ # fact sets.
234
+ umount /vagrant
235
+ mount -t vboxvfs Vagrant /vagrant
236
+ hardwaremodel=$(facter hardwaremodel)
237
+ [ "${hardwaremodel}" = 'amd64' ] && hardwaremodel=x86_64
238
+ output_file="/vagrant/$(facter --version | cut -d. -f1,2)/$(facter operatingsystem | tr '[:upper:]' '[:lower:]')-$(facter operatingsystemmajrelease)-${hardwaremodel}.facts"
239
+ mkdir -p $(dirname ${output_file})
240
+ [ ! -f ${output_file} ] && facter --show-legacy -p -j | tee ${output_file}
241
+ done
234
242
  ;;
235
243
  'OpenBSD')
236
244
  hardwaremodel=$(facter hardwaremodel)
@@ -301,17 +309,24 @@ hardwaremodel=$(facter hardwaremodel)
301
309
 
302
310
  PATH=/opt/puppetlabs/puppet/bin:$PATH
303
311
 
304
- if ruby -e 'puts RUBY_VERSION' | grep -e '^2\.3'; then
305
- gem install bundler --no-ri --no-rdoc --no-format-executable
312
+ if [ "$(ruby -e 'puts Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.3")')" = "true" ]; then
313
+ gem install bundler --no-document --no-format-executable
306
314
  else
307
315
  gem install bundler --version '~> 1.0' --no-ri --no-rdoc --no-format-executable
308
316
  fi
309
317
  bundle install --path vendor/bundler
310
318
 
311
- for version in 1.6.0 1.7.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0; do
319
+ for version in 1.6.0 1.7.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 4.0.0 4.1.0 4.2.0; do
312
320
  FACTER_GEM_VERSION="~> ${version}" bundle update
321
+
322
+ # This is another workaround for shared folder on FreeBSD. "Accessing"
323
+ # /vagrant helps to not encounter a bug where we try to access files in
324
+ # /vagrant/subdir/file
325
+ ls -d /vagrant > /dev/null
326
+ ls -l /vagrant > /dev/null
327
+
313
328
  case "${operatingsystem}" in
314
- almalinux)
329
+ almalinux|rocky)
315
330
  break
316
331
  ;;
317
332
  openbsd)
@@ -324,6 +339,9 @@ for version in 1.6.0 1.7.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0; do
324
339
  output_file="/vagrant/$(bundle exec facter --version | cut -d. -f1,2)/${operatingsystem}-${operatingsystemmajrelease}-${hardwaremodel}.facts"
325
340
  ;;
326
341
  esac
342
+ if [ -f $output_file ]; then
343
+ continue
344
+ fi
327
345
  mkdir -p $(dirname $output_file)
328
346
  echo $version | grep -q -E '^1\.' &&
329
347
  FACTER_GEM_VERSION="~> ${version}" bundle exec facter -j | bundle exec ruby -e 'require "json"; jj JSON.parse gets' | tee $output_file ||
@@ -1,5 +1,5 @@
1
1
  module FacterDB
2
2
  module Version
3
- STRING = '1.8.0'
3
+ STRING = '1.9.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: facterdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-06 00:00:00.000000000 Z
11
+ date: 2021-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: coveralls
@@ -127,6 +127,7 @@ files:
127
127
  - facts/1.6/centos-7-x86_64.facts
128
128
  - facts/1.6/centos-8-x86_64.facts
129
129
  - facts/1.6/debian-10-x86_64.facts
130
+ - facts/1.6/debian-11-x86_64.facts
130
131
  - facts/1.6/debian-6-i386.facts
131
132
  - facts/1.6/debian-6-x86_64.facts
132
133
  - facts/1.6/debian-7-i386.facts
@@ -149,6 +150,7 @@ files:
149
150
  - facts/1.6/freebsd-10-x86_64.facts
150
151
  - facts/1.6/freebsd-11-x86_64.facts
151
152
  - facts/1.6/freebsd-12-x86_64.facts
153
+ - facts/1.6/freebsd-13-x86_64.facts
152
154
  - facts/1.6/freebsd-9-i386.facts
153
155
  - facts/1.6/freebsd-9-x86_64.facts
154
156
  - facts/1.6/gentoo-i386.facts
@@ -173,6 +175,7 @@ files:
173
175
  - facts/1.6/oraclelinux-6-x86_64.facts
174
176
  - facts/1.6/oraclelinux-7-i386.facts
175
177
  - facts/1.6/oraclelinux-7-x86_64.facts
178
+ - facts/1.6/oraclelinux-8-x86_64.facts
176
179
  - facts/1.6/redhat-5-i386.facts
177
180
  - facts/1.6/redhat-5-x86_64.facts
178
181
  - facts/1.6/redhat-6-i386.facts
@@ -221,6 +224,7 @@ files:
221
224
  - facts/1.7/centos-8-x86_64.facts
222
225
  - facts/1.7/centos-9-x86_64.facts
223
226
  - facts/1.7/debian-10-x86_64.facts
227
+ - facts/1.7/debian-11-x86_64.facts
224
228
  - facts/1.7/debian-6-i386.facts
225
229
  - facts/1.7/debian-6-x86_64.facts
226
230
  - facts/1.7/debian-7-i386.facts
@@ -244,6 +248,7 @@ files:
244
248
  - facts/1.7/freebsd-10-x86_64.facts
245
249
  - facts/1.7/freebsd-11-x86_64.facts
246
250
  - facts/1.7/freebsd-12-x86_64.facts
251
+ - facts/1.7/freebsd-13-x86_64.facts
247
252
  - facts/1.7/freebsd-9-i386.facts
248
253
  - facts/1.7/freebsd-9-x86_64.facts
249
254
  - facts/1.7/gentoo-i386.facts
@@ -268,6 +273,7 @@ files:
268
273
  - facts/1.7/oraclelinux-6-x86_64.facts
269
274
  - facts/1.7/oraclelinux-7-i386.facts
270
275
  - facts/1.7/oraclelinux-7-x86_64.facts
276
+ - facts/1.7/oraclelinux-8-x86_64.facts
271
277
  - facts/1.7/redhat-5-i386.facts
272
278
  - facts/1.7/redhat-5-x86_64.facts
273
279
  - facts/1.7/redhat-6-i386.facts
@@ -322,6 +328,7 @@ files:
322
328
  - facts/2.0/darwin-17-x86_64.facts
323
329
  - facts/2.0/darwin-18-x86_64.facts
324
330
  - facts/2.0/debian-10-x86_64.facts
331
+ - facts/2.0/debian-11-x86_64.facts
325
332
  - facts/2.0/debian-6-i386.facts
326
333
  - facts/2.0/debian-6-x86_64.facts
327
334
  - facts/2.0/debian-7-i386.facts
@@ -349,6 +356,7 @@ files:
349
356
  - facts/2.0/freebsd-10-x86_64.facts
350
357
  - facts/2.0/freebsd-11-x86_64.facts
351
358
  - facts/2.0/freebsd-12-x86_64.facts
359
+ - facts/2.0/freebsd-13-x86_64.facts
352
360
  - facts/2.0/freebsd-9-i386.facts
353
361
  - facts/2.0/freebsd-9-x86_64.facts
354
362
  - facts/2.0/gentoo-i386.facts
@@ -379,6 +387,7 @@ files:
379
387
  - facts/2.0/oraclelinux-6-x86_64.facts
380
388
  - facts/2.0/oraclelinux-7-i386.facts
381
389
  - facts/2.0/oraclelinux-7-x86_64.facts
390
+ - facts/2.0/oraclelinux-8-x86_64.facts
382
391
  - facts/2.0/redhat-5-i386.facts
383
392
  - facts/2.0/redhat-5-x86_64.facts
384
393
  - facts/2.0/redhat-6-i386.facts
@@ -433,6 +442,7 @@ files:
433
442
  - facts/2.1/darwin-17-x86_64.facts
434
443
  - facts/2.1/darwin-18-x86_64.facts
435
444
  - facts/2.1/debian-10-x86_64.facts
445
+ - facts/2.1/debian-11-x86_64.facts
436
446
  - facts/2.1/debian-6-i386.facts
437
447
  - facts/2.1/debian-6-x86_64.facts
438
448
  - facts/2.1/debian-7-i386.facts
@@ -460,6 +470,7 @@ files:
460
470
  - facts/2.1/freebsd-10-x86_64.facts
461
471
  - facts/2.1/freebsd-11-x86_64.facts
462
472
  - facts/2.1/freebsd-12-x86_64.facts
473
+ - facts/2.1/freebsd-13-x86_64.facts
463
474
  - facts/2.1/freebsd-9-i386.facts
464
475
  - facts/2.1/freebsd-9-x86_64.facts
465
476
  - facts/2.1/gentoo-i386.facts
@@ -490,6 +501,7 @@ files:
490
501
  - facts/2.1/oraclelinux-6-x86_64.facts
491
502
  - facts/2.1/oraclelinux-7-i386.facts
492
503
  - facts/2.1/oraclelinux-7-x86_64.facts
504
+ - facts/2.1/oraclelinux-8-x86_64.facts
493
505
  - facts/2.1/redhat-5-i386.facts
494
506
  - facts/2.1/redhat-5-x86_64.facts
495
507
  - facts/2.1/redhat-6-i386.facts
@@ -554,6 +566,7 @@ files:
554
566
  - facts/2.2/darwin-17-x86_64.facts
555
567
  - facts/2.2/darwin-18-x86_64.facts
556
568
  - facts/2.2/debian-10-x86_64.facts
569
+ - facts/2.2/debian-11-x86_64.facts
557
570
  - facts/2.2/debian-6-i386.facts
558
571
  - facts/2.2/debian-6-x86_64.facts
559
572
  - facts/2.2/debian-7-i386.facts
@@ -581,6 +594,7 @@ files:
581
594
  - facts/2.2/freebsd-10-x86_64.facts
582
595
  - facts/2.2/freebsd-11-x86_64.facts
583
596
  - facts/2.2/freebsd-12-x86_64.facts
597
+ - facts/2.2/freebsd-13-x86_64.facts
584
598
  - facts/2.2/freebsd-9-i386.facts
585
599
  - facts/2.2/freebsd-9-x86_64.facts
586
600
  - facts/2.2/gentoo-i386.facts
@@ -611,6 +625,7 @@ files:
611
625
  - facts/2.2/oraclelinux-6-x86_64.facts
612
626
  - facts/2.2/oraclelinux-7-i386.facts
613
627
  - facts/2.2/oraclelinux-7-x86_64.facts
628
+ - facts/2.2/oraclelinux-8-x86_64.facts
614
629
  - facts/2.2/redhat-5-i386.facts
615
630
  - facts/2.2/redhat-5-x86_64.facts
616
631
  - facts/2.2/redhat-6-i386.facts
@@ -675,6 +690,7 @@ files:
675
690
  - facts/2.3/darwin-17-x86_64.facts
676
691
  - facts/2.3/darwin-18-x86_64.facts
677
692
  - facts/2.3/debian-10-x86_64.facts
693
+ - facts/2.3/debian-11-x86_64.facts
678
694
  - facts/2.3/debian-6-i386.facts
679
695
  - facts/2.3/debian-6-x86_64.facts
680
696
  - facts/2.3/debian-7-i386.facts
@@ -702,6 +718,7 @@ files:
702
718
  - facts/2.3/freebsd-10-x86_64.facts
703
719
  - facts/2.3/freebsd-11-x86_64.facts
704
720
  - facts/2.3/freebsd-12-x86_64.facts
721
+ - facts/2.3/freebsd-13-x86_64.facts
705
722
  - facts/2.3/freebsd-9-i386.facts
706
723
  - facts/2.3/freebsd-9-x86_64.facts
707
724
  - facts/2.3/gentoo-i386.facts
@@ -732,6 +749,7 @@ files:
732
749
  - facts/2.3/oraclelinux-6-x86_64.facts
733
750
  - facts/2.3/oraclelinux-7-i386.facts
734
751
  - facts/2.3/oraclelinux-7-x86_64.facts
752
+ - facts/2.3/oraclelinux-8-x86_64.facts
735
753
  - facts/2.3/redhat-5-i386.facts
736
754
  - facts/2.3/redhat-5-x86_64.facts
737
755
  - facts/2.3/redhat-6-i386.facts
@@ -797,6 +815,7 @@ files:
797
815
  - facts/2.4/darwin-17-x86_64.facts
798
816
  - facts/2.4/darwin-18-x86_64.facts
799
817
  - facts/2.4/debian-10-x86_64.facts
818
+ - facts/2.4/debian-11-x86_64.facts
800
819
  - facts/2.4/debian-6-i386.facts
801
820
  - facts/2.4/debian-6-x86_64.facts
802
821
  - facts/2.4/debian-7-i386.facts
@@ -824,6 +843,7 @@ files:
824
843
  - facts/2.4/freebsd-10-x86_64.facts
825
844
  - facts/2.4/freebsd-11-x86_64.facts
826
845
  - facts/2.4/freebsd-12-x86_64.facts
846
+ - facts/2.4/freebsd-13-x86_64.facts
827
847
  - facts/2.4/freebsd-9-i386.facts
828
848
  - facts/2.4/freebsd-9-x86_64.facts
829
849
  - facts/2.4/gentoo-i386.facts
@@ -854,6 +874,7 @@ files:
854
874
  - facts/2.4/oraclelinux-6-x86_64.facts
855
875
  - facts/2.4/oraclelinux-7-i386.facts
856
876
  - facts/2.4/oraclelinux-7-x86_64.facts
877
+ - facts/2.4/oraclelinux-8-x86_64.facts
857
878
  - facts/2.4/raspbian-9-armv6l.facts
858
879
  - facts/2.4/raspbian-9-armv7l.facts
859
880
  - facts/2.4/redhat-5-i386.facts
@@ -918,6 +939,7 @@ files:
918
939
  - facts/2.5/darwin-17-x86_64.facts
919
940
  - facts/2.5/darwin-18-x86_64.facts
920
941
  - facts/2.5/debian-10-x86_64.facts
942
+ - facts/2.5/debian-11-x86_64.facts
921
943
  - facts/2.5/debian-7-i386.facts
922
944
  - facts/2.5/debian-7-x86_64.facts
923
945
  - facts/2.5/debian-8-i386.facts
@@ -936,6 +958,7 @@ files:
936
958
  - facts/2.5/freebsd-10-x86_64.facts
937
959
  - facts/2.5/freebsd-11-x86_64.facts
938
960
  - facts/2.5/freebsd-12-x86_64.facts
961
+ - facts/2.5/freebsd-13-x86_64.facts
939
962
  - facts/2.5/gentoo-i386.facts
940
963
  - facts/2.5/gentoo-x86_64.facts
941
964
  - facts/2.5/linuxmint-18-x86_64.facts
@@ -951,6 +974,7 @@ files:
951
974
  - facts/2.5/oraclelinux-6-i386.facts
952
975
  - facts/2.5/oraclelinux-6-x86_64.facts
953
976
  - facts/2.5/oraclelinux-7-x86_64.facts
977
+ - facts/2.5/oraclelinux-8-x86_64.facts
954
978
  - facts/2.5/redhat-5-i386.facts
955
979
  - facts/2.5/redhat-5-x86_64.facts
956
980
  - facts/2.5/redhat-6-i386.facts
@@ -1171,6 +1195,7 @@ files:
1171
1195
  - facts/3.11/oraclelinux-6-x86_64.facts
1172
1196
  - facts/3.11/oraclelinux-7-i386.facts
1173
1197
  - facts/3.11/oraclelinux-7-x86_64.facts
1198
+ - facts/3.11/oraclelinux-8-x86_64.facts
1174
1199
  - facts/3.11/raspbian-10-armv6l.facts
1175
1200
  - facts/3.11/raspbian-10-armv7l.facts
1176
1201
  - facts/3.11/redhat-5-i386.facts
@@ -1222,6 +1247,7 @@ files:
1222
1247
  - facts/3.12/openbsd-6.4-x86_64.facts
1223
1248
  - facts/3.12/oraclelinux-6-x86_64.facts
1224
1249
  - facts/3.12/oraclelinux-7-x86_64.facts
1250
+ - facts/3.12/oraclelinux-8-x86_64.facts
1225
1251
  - facts/3.12/redhat-6-x86_64.facts
1226
1252
  - facts/3.12/redhat-7-x86_64.facts
1227
1253
  - facts/3.12/redhat-8-x86_64.facts
@@ -1260,6 +1286,7 @@ files:
1260
1286
  - facts/3.13/linuxmint-19-x86_64.facts
1261
1287
  - facts/3.13/oraclelinux-6-x86_64.facts
1262
1288
  - facts/3.13/oraclelinux-7-x86_64.facts
1289
+ - facts/3.13/oraclelinux-8-x86_64.facts
1263
1290
  - facts/3.13/redhat-6-x86_64.facts
1264
1291
  - facts/3.13/redhat-7-x86_64.facts
1265
1292
  - facts/3.13/redhat-8-x86_64.facts
@@ -1292,21 +1319,27 @@ files:
1292
1319
  - facts/3.14/darwin-19-x86_64.facts
1293
1320
  - facts/3.14/darwin-20-x86_64.facts
1294
1321
  - facts/3.14/debian-10-x86_64.facts
1322
+ - facts/3.14/debian-11-x86_64.facts
1295
1323
  - facts/3.14/debian-8-x86_64.facts
1296
1324
  - facts/3.14/debian-9-x86_64.facts
1297
1325
  - facts/3.14/fedora-28-x86_64.facts
1298
1326
  - facts/3.14/fedora-29-x86_64.facts
1299
1327
  - facts/3.14/fedora-30-x86_64.facts
1300
1328
  - facts/3.14/freebsd-11-amd64.facts
1329
+ - facts/3.14/freebsd-11-x86_64.facts
1301
1330
  - facts/3.14/freebsd-12-amd64.facts
1331
+ - facts/3.14/freebsd-12-x86_64.facts
1332
+ - facts/3.14/freebsd-13-x86_64.facts
1302
1333
  - facts/3.14/gentoo-x86_64.facts
1303
1334
  - facts/3.14/linuxmint-18-x86_64.facts
1304
1335
  - facts/3.14/linuxmint-19-x86_64.facts
1305
1336
  - facts/3.14/oraclelinux-6-x86_64.facts
1306
1337
  - facts/3.14/oraclelinux-7-x86_64.facts
1338
+ - facts/3.14/oraclelinux-8-x86_64.facts
1307
1339
  - facts/3.14/redhat-6-x86_64.facts
1308
1340
  - facts/3.14/redhat-7-x86_64.facts
1309
1341
  - facts/3.14/redhat-8-x86_64.facts
1342
+ - facts/3.14/rocky-8-x86_64.facts
1310
1343
  - facts/3.14/scientific-6-x86_64.facts
1311
1344
  - facts/3.14/scientific-7-x86_64.facts
1312
1345
  - facts/3.14/sles-11-x86_64.facts
@@ -1703,9 +1736,26 @@ files:
1703
1736
  - facts/4.0/almalinux-8-x86_64.facts
1704
1737
  - facts/4.0/centos-7-x86_64.facts
1705
1738
  - facts/4.0/debian-10-x86_64.facts
1739
+ - facts/4.0/debian-11-x86_64.facts
1740
+ - facts/4.0/freebsd-11-x86_64.facts
1741
+ - facts/4.0/freebsd-12-x86_64.facts
1742
+ - facts/4.0/freebsd-13-x86_64.facts
1706
1743
  - facts/4.0/solaris-11-sun4v.facts
1744
+ - facts/4.1/debian-11-x86_64.facts
1745
+ - facts/4.1/freebsd-11-x86_64.facts
1746
+ - facts/4.1/freebsd-12-x86_64.facts
1747
+ - facts/4.1/freebsd-13-x86_64.facts
1748
+ - facts/4.2/centos-7-x86_64.facts
1749
+ - facts/4.2/centos-8-x86_64.facts
1707
1750
  - facts/4.2/centos-9-x86_64.facts
1708
1751
  - facts/4.2/darwin-20-x86_64.facts
1752
+ - facts/4.2/debian-10-x86_64.facts
1753
+ - facts/4.2/debian-11-x86_64.facts
1754
+ - facts/4.2/debian-9-x86_64.facts
1755
+ - facts/4.2/freebsd-11-x86_64.facts
1756
+ - facts/4.2/freebsd-12-x86_64.facts
1757
+ - facts/4.2/freebsd-13-x86_64.facts
1758
+ - facts/4.2/oraclelinux-8-x86_64.facts
1709
1759
  - facts/Gemfile
1710
1760
  - facts/Vagrantfile
1711
1761
  - facts/Windows_README.md