facterdb 1.20.0 → 1.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -0
- data/CHANGELOG.md +11 -1
- data/README.md +3 -0
- data/facts/3.14/rocky-9-x86_64.facts +597 -0
- data/facts/3.14/ubuntu-22.10-x86_64.facts +631 -0
- data/facts/4.0/rocky-9-x86_64.facts +617 -0
- data/facts/4.1/rocky-9-x86_64.facts +619 -0
- data/facts/4.2/fedora-37-x86_64.facts +512 -0
- data/facts/4.2/rocky-9-x86_64.facts +626 -0
- data/facts/4.2/sles-12-x86_64.facts +483 -0
- data/facts/4.2/ubuntu-22.10-x86_64.facts +654 -0
- data/facts/Vagrantfile +25 -0
- data/facts/get_facts.sh +1 -1
- data/lib/facterdb/version.rb +1 -1
- metadata +10 -2
data/facts/get_facts.sh
CHANGED
@@ -109,7 +109,7 @@ case "${osfamily}" in
|
|
109
109
|
|
110
110
|
# There are no puppet-agent packages for $releasename yet, so generate a Facter 3.x
|
111
111
|
# fact set from the official Debian package.
|
112
|
-
if [[ "hirsute" =~ ${lsbdistcodename} || "impish" =~ ${lsbdistcodename} || "jammy" =~ ${lsbdistcodename} ]]; then
|
112
|
+
if [[ "hirsute" =~ ${lsbdistcodename} || "impish" =~ ${lsbdistcodename} || "jammy" =~ ${lsbdistcodename} || "kinetic" =~ ${lsbdistcodename} ]]; then
|
113
113
|
apt_install ruby rubygems ruby-dev puppet facter
|
114
114
|
output_file="/vagrant/$(facter --version | cut -d. -f1,2)/$(facter operatingsystem | tr '[:upper:]' '[:lower:]')-$(facter operatingsystemmajrelease)-$(facter hardwaremodel).facts"
|
115
115
|
mkdir -p $(dirname ${output_file})
|
data/lib/facterdb/version.rb
CHANGED
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.
|
4
|
+
version: 1.21.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:
|
11
|
+
date: 2023-01-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: coveralls
|
@@ -1350,6 +1350,7 @@ files:
|
|
1350
1350
|
- facts/3.14/redhat-7-x86_64.facts
|
1351
1351
|
- facts/3.14/redhat-8-x86_64.facts
|
1352
1352
|
- facts/3.14/rocky-8-x86_64.facts
|
1353
|
+
- facts/3.14/rocky-9-x86_64.facts
|
1353
1354
|
- facts/3.14/scientific-6-x86_64.facts
|
1354
1355
|
- facts/3.14/scientific-7-x86_64.facts
|
1355
1356
|
- facts/3.14/sles-11-x86_64.facts
|
@@ -1364,6 +1365,7 @@ files:
|
|
1364
1365
|
- facts/3.14/ubuntu-21.04-x86_64.facts
|
1365
1366
|
- facts/3.14/ubuntu-21.10-x86_64.facts
|
1366
1367
|
- facts/3.14/ubuntu-22.04-x86_64.facts
|
1368
|
+
- facts/3.14/ubuntu-22.10-x86_64.facts
|
1367
1369
|
- facts/3.14/windows-10-i386.facts
|
1368
1370
|
- facts/3.14/windows-10-x86_64.facts
|
1369
1371
|
- facts/3.14/windows-2012 r2-core-x86_64.facts
|
@@ -1763,6 +1765,7 @@ files:
|
|
1763
1765
|
- facts/4.0/redhat-7-x86_64.facts
|
1764
1766
|
- facts/4.0/redhat-8-x86_64.facts
|
1765
1767
|
- facts/4.0/rocky-8-x86_64.facts
|
1768
|
+
- facts/4.0/rocky-9-x86_64.facts
|
1766
1769
|
- facts/4.0/scientific-7-x86_64.facts
|
1767
1770
|
- facts/4.0/solaris-11-sun4v.facts
|
1768
1771
|
- facts/4.0/ubuntu-16.04-x86_64.facts
|
@@ -1783,6 +1786,7 @@ files:
|
|
1783
1786
|
- facts/4.1/opensuse-15-x86_64.facts
|
1784
1787
|
- facts/4.1/redhat-8-x86_64.facts
|
1785
1788
|
- facts/4.1/rocky-8-x86_64.facts
|
1789
|
+
- facts/4.1/rocky-9-x86_64.facts
|
1786
1790
|
- facts/4.1/ubuntu-16.04-x86_64.facts
|
1787
1791
|
- facts/4.1/ubuntu-18.04-x86_64.facts
|
1788
1792
|
- facts/4.1/ubuntu-20.04-x86_64.facts
|
@@ -1804,6 +1808,7 @@ files:
|
|
1804
1808
|
- facts/4.2/fedora-34-x86_64.facts
|
1805
1809
|
- facts/4.2/fedora-35-x86_64.facts
|
1806
1810
|
- facts/4.2/fedora-36-x86_64.facts
|
1811
|
+
- facts/4.2/fedora-37-x86_64.facts
|
1807
1812
|
- facts/4.2/freebsd-11-x86_64.facts
|
1808
1813
|
- facts/4.2/freebsd-12-x86_64.facts
|
1809
1814
|
- facts/4.2/freebsd-13-x86_64.facts
|
@@ -1817,7 +1822,9 @@ files:
|
|
1817
1822
|
- facts/4.2/redhat-8-x86_64.facts
|
1818
1823
|
- facts/4.2/redhat-9-x86_64.facts
|
1819
1824
|
- facts/4.2/rocky-8-x86_64.facts
|
1825
|
+
- facts/4.2/rocky-9-x86_64.facts
|
1820
1826
|
- facts/4.2/scientific-7-x86_64.facts
|
1827
|
+
- facts/4.2/sles-12-x86_64.facts
|
1821
1828
|
- facts/4.2/sles-15-x86_64.facts
|
1822
1829
|
- facts/4.2/ubuntu-16.04-x86_64.facts
|
1823
1830
|
- facts/4.2/ubuntu-18.04-x86_64.facts
|
@@ -1825,6 +1832,7 @@ files:
|
|
1825
1832
|
- facts/4.2/ubuntu-21.04-x86_64.facts
|
1826
1833
|
- facts/4.2/ubuntu-21.10-x86_64.facts
|
1827
1834
|
- facts/4.2/ubuntu-22.04-x86_64.facts
|
1835
|
+
- facts/4.2/ubuntu-22.10-x86_64.facts
|
1828
1836
|
- facts/4.2/windows-10-x86_64.facts
|
1829
1837
|
- facts/4.2/windows-11-x86_64.facts
|
1830
1838
|
- facts/4.2/windows-2012 r2-x86_64.facts
|