facterdb 1.19.0 → 1.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -2
- data/README.md +10 -5
- data/facts/4.2/redhat-7-x86_64.facts +200 -257
- data/facts/4.2/redhat-8-x86_64.facts +250 -192
- data/facts/4.2/redhat-9-x86_64.facts +394 -143
- data/facts/4.2/windows-10-x86_64.facts +182 -0
- data/facts/4.2/windows-11-x86_64.facts +182 -0
- data/facts/4.2/windows-2012 r2-x86_64.facts +179 -0
- data/facts/4.2/windows-2012-x86_64.facts +222 -0
- data/facts/4.2/windows-2016-core-x86_64.facts +224 -0
- data/facts/4.2/windows-2016-x86_64.facts +224 -0
- data/facts/4.2/windows-2019-core-x86_64.facts +180 -0
- data/facts/4.2/windows-2019-x86_64.facts +180 -0
- data/facts/4.2/windows-2022-core-x86_64.facts +182 -0
- data/facts/4.2/windows-2022-x86_64.facts +182 -0
- data/lib/facterdb/version.rb +1 -1
- metadata +12 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c0fd440da19f589d026e51529d2b14381688476331c310b20f97b354d0857c1
|
4
|
+
data.tar.gz: 51b328cbff55939ebc997df60760f0c204594e19e1a8fa242b2f1cdfb7a9b489
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4382ff393c0e25e08544e879e5c928276f7c1464157c912098715ede25b6b5eb8a357f95d977c3d0c7c53502f50645294d8774f29b50f05fc201546e5705d7b
|
7
|
+
data.tar.gz: 1d014be2654c079b3df4485225145c1ba13ae9f21adbc3d55cf207d241dc93f7f2c571090d72764939b59e232574d3e555a65f18ba444a7276bfc80aa458e38b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.20.0](https://rubygems.org/gems/facterdb/versions/1.20.0) (2022-12-06)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.19.0...1.20.0)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Add windows 2012 and 2016 facts [\#259](https://github.com/voxpupuli/facterdb/pull/259) ([davidsandilands](https://github.com/davidsandilands))
|
10
|
+
- Windows updates for facter 4.2 [\#258](https://github.com/voxpupuli/facterdb/pull/258) ([davidsandilands](https://github.com/davidsandilands))
|
11
|
+
|
12
|
+
**Fixed bugs:**
|
13
|
+
|
14
|
+
- Fix Red Hat facts on version 4.2 [\#257](https://github.com/voxpupuli/facterdb/pull/257) ([anders-larsson](https://github.com/anders-larsson))
|
15
|
+
|
3
16
|
## [1.19.0](https://rubygems.org/gems/facterdb/versions/1.19.0) (2022-07-20)
|
4
17
|
|
5
18
|
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.18.0...1.19.0)
|
@@ -40,7 +53,7 @@
|
|
40
53
|
**Implemented enhancements:**
|
41
54
|
|
42
55
|
- Arch Linux: Add facter 4.2 factset [\#244](https://github.com/voxpupuli/facterdb/pull/244) ([bastelfreak](https://github.com/bastelfreak))
|
43
|
-
- Add OL6 facts for Facter 4 [\#243](https://github.com/voxpupuli/facterdb/pull/243) ([
|
56
|
+
- Add OL6 facts for Facter 4 [\#243](https://github.com/voxpupuli/facterdb/pull/243) ([serialh0bbyist](https://github.com/serialh0bbyist))
|
44
57
|
|
45
58
|
## [1.15.0](https://rubygems.org/gems/facterdb/versions/1.15.0) (2022-03-04)
|
46
59
|
|
@@ -171,7 +184,7 @@
|
|
171
184
|
|
172
185
|
- Add Debian 11 facts [\#185](https://github.com/voxpupuli/facterdb/pull/185) ([smortex](https://github.com/smortex))
|
173
186
|
- Add more FreeBSD facts [\#184](https://github.com/voxpupuli/facterdb/pull/184) ([smortex](https://github.com/smortex))
|
174
|
-
- Add Oracle Linux 8 facts [\#183](https://github.com/voxpupuli/facterdb/pull/183) ([
|
187
|
+
- Add Oracle Linux 8 facts [\#183](https://github.com/voxpupuli/facterdb/pull/183) ([serialh0bbyist](https://github.com/serialh0bbyist))
|
175
188
|
- Adding puppet7 facter4.2 facts for centos7/8 and debian9/10 [\#181](https://github.com/voxpupuli/facterdb/pull/181) ([jacobmw](https://github.com/jacobmw))
|
176
189
|
- Adds Rocky Linux vagrant image, facts and get\_facts.sh support [\#176](https://github.com/voxpupuli/facterdb/pull/176) ([fuero](https://github.com/fuero))
|
177
190
|
|
data/README.md
CHANGED
@@ -164,14 +164,19 @@ FacterDB::get_facts('osfamily=Debian')
|
|
164
164
|
| VirtuozzoLinux 7 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | |
|
165
165
|
| Windows 7 | | | | 1 | 1 | 1 | 2 | 1 | 2 | 2 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
|
166
166
|
| Windows 8.1 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
|
167
|
-
| Windows 10 | | | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | |
|
167
|
+
| Windows 10 | | | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | 1 |
|
168
|
+
| Windows 11 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
|
168
169
|
| Windows Server 2008 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
|
169
170
|
| Windows Server 2008 R2 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
|
170
|
-
| Windows Server 2012 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
171
|
-
| Windows Server 2012 R2 | | | | 1 | 1 | 1 | 2 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
171
|
+
| Windows Server 2012 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
|
172
|
+
| Windows Server 2012 R2 | | | | 1 | 1 | 1 | 2 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
|
172
173
|
| Windows Server 2012 R2 Core | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
|
173
|
-
| Windows Server 2016 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
174
|
-
| Windows Server
|
174
|
+
| Windows Server 2016 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
|
175
|
+
| Windows Server 2016 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
|
176
|
+
| Windows Server 2019 | | | | | | | | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
|
177
|
+
| Windows Server 2019 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
|
178
|
+
| Windows Server 2021 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
|
179
|
+
| Windows Server 2021 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
|
175
180
|
| openSUSE 15 | | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 |
|
176
181
|
|
177
182
|
Where the number (1, 2 etc.) are the number of factsets for that OS and facter combination (e.g., x86_64 and i386 architectures).
|