facterdb 3.3.0 → 3.5.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.
- checksums.yaml +4 -4
- data/.github/workflows/pages.yml +1 -1
- data/.github/workflows/release.yml +2 -2
- data/.github/workflows/test.yml +8 -9
- data/CHANGELOG.md +23 -0
- data/README.md +3 -1
- data/database/list_arch_os_facter.md +5 -4
- data/database/list_facter_os_arch.md +19 -0
- data/database/list_os_arch_facter.md +8 -6
- data/database/list_os_facter_arch.md +36 -18
- data/database/table.md +51 -50
- data/facterdb.gemspec +3 -3
- data/facts/4.10/centos-10-x86_64.facts +495 -0
- data/facts/4.10/redhat-8-x86_64.facts +503 -0
- data/facts/4.10/redhat-9-x86_64.facts +554 -0
- data/facts/4.10/ubuntu-24.04-x86_64.facts +495 -0
- data/facts/4.11/centos-10-x86_64.facts +495 -0
- data/facts/4.11/redhat-8-x86_64.facts +505 -0
- data/facts/4.11/redhat-9-x86_64.facts +556 -0
- data/facts/4.11/ubuntu-24.04-x86_64.facts +498 -0
- data/facts/4.5/centos-10-x86_64.facts +489 -0
- data/facts/4.6/centos-10-x86_64.facts +490 -0
- data/facts/4.6/rocky-8-x86_64.facts +469 -0
- data/facts/4.7/centos-10-x86_64.facts +490 -0
- data/facts/4.7/rocky-8-x86_64.facts +469 -0
- data/facts/4.8/centos-10-x86_64.facts +493 -0
- data/facts/4.8/rocky-8-x86_64.facts +474 -0
- data/facts/4.9/centos-10-x86_64.facts +495 -0
- data/facts/4.9/rocky-8-x86_64.facts +476 -0
- data/facts/Vagrantfile +1 -1
- data/facts/get_facts.sh +39 -26
- data/facts/versions.txt +9 -1
- data/lib/facterdb/version.rb +1 -1
- metadata +22 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ad8c28a5c833da7af80f081aa34af7d1ad413ef6fa6c49eb1eaf23f51e262a4
|
4
|
+
data.tar.gz: 4fad52b1fef8c7f872b5cbfdea46578bde3be26ba272db2c89e251088d13306e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04cf338f3ed8c02611ef2f96bf4f87d14b88d557cf86a2e71bb06ee09ca91f508de2e9b106c51e53828c3a02cfd8fff7cf8f5b5558571b7553d9ad8f2321d68a
|
7
|
+
data.tar.gz: 21c30637406b98ce53249b62a562e647be359f239fa18761ecce31841f89797f315e9401b51da82558ecf0ad7da6523ccd9767839a419f85de9aa611254204bf
|
data/.github/workflows/pages.yml
CHANGED
@@ -11,10 +11,10 @@ jobs:
|
|
11
11
|
if: github.repository == 'voxpupuli/facterdb'
|
12
12
|
steps:
|
13
13
|
- uses: actions/checkout@v4
|
14
|
-
- name: Install Ruby 3.
|
14
|
+
- name: Install Ruby 3.4
|
15
15
|
uses: ruby/setup-ruby@v1
|
16
16
|
with:
|
17
|
-
ruby-version: '3.
|
17
|
+
ruby-version: '3.4'
|
18
18
|
bundler-cache: true
|
19
19
|
env:
|
20
20
|
BUNDLE_WITHOUT: release
|
data/.github/workflows/test.yml
CHANGED
@@ -7,31 +7,31 @@ on:
|
|
7
7
|
- master
|
8
8
|
|
9
9
|
jobs:
|
10
|
-
|
10
|
+
rubocop_and_matrix:
|
11
11
|
env:
|
12
12
|
BUNDLE_WITHOUT: release
|
13
13
|
runs-on: ubuntu-latest
|
14
|
+
outputs:
|
15
|
+
ruby: ${{ steps.ruby.outputs.versions }}
|
14
16
|
steps:
|
15
17
|
- uses: actions/checkout@v4
|
16
18
|
- name: Install Ruby ${{ matrix.ruby }}
|
17
19
|
uses: ruby/setup-ruby@v1
|
18
20
|
with:
|
19
|
-
ruby-version: "3.
|
21
|
+
ruby-version: "3.4"
|
20
22
|
bundler-cache: true
|
21
23
|
- name: Run Rubocop
|
22
24
|
run: bundle exec rake rubocop
|
25
|
+
- id: ruby
|
26
|
+
uses: voxpupuli/ruby-version@v1
|
23
27
|
|
24
28
|
test:
|
25
29
|
runs-on: ubuntu-latest
|
30
|
+
needs: rubocop_and_matrix
|
26
31
|
strategy:
|
27
32
|
fail-fast: false
|
28
33
|
matrix:
|
29
|
-
ruby:
|
30
|
-
- '2.7'
|
31
|
-
- '3.0'
|
32
|
-
- '3.1'
|
33
|
-
- '3.2'
|
34
|
-
- '3.3'
|
34
|
+
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
35
35
|
steps:
|
36
36
|
- uses: actions/checkout@v4
|
37
37
|
- name: Install Ruby ${{ matrix.ruby }}
|
@@ -48,7 +48,6 @@ jobs:
|
|
48
48
|
|
49
49
|
tests:
|
50
50
|
needs:
|
51
|
-
- rubocop
|
52
51
|
- test
|
53
52
|
runs-on: ubuntu-latest
|
54
53
|
name: Test suite
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [3.5.0](https://rubygems.org/gems/facterdb/versions/3.5.0) (2025-03-04)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/3.4.0...3.5.0)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Add Ubuntu 24.04 factsets and fix fact generation on Debian OS family [\#391](https://github.com/voxpupuli/facterdb/pull/391) ([rwaffen](https://github.com/rwaffen))
|
10
|
+
- feat: add redhat-8/9 facts for 4.10 and 4.11 [\#390](https://github.com/voxpupuli/facterdb/pull/390) ([rwaffen](https://github.com/rwaffen))
|
11
|
+
- Add Ruby 3.4 support [\#389](https://github.com/voxpupuli/facterdb/pull/389) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
- Add CentOS 10 factsets & Switch to openvox packages [\#388](https://github.com/voxpupuli/facterdb/pull/388) ([bastelfreak](https://github.com/bastelfreak))
|
13
|
+
|
14
|
+
**Merged pull requests:**
|
15
|
+
|
16
|
+
- Update voxpupuli-rubocop requirement from ~\> 2.8.0 to ~\> 3.0.0 [\#386](https://github.com/voxpupuli/facterdb/pull/386) ([dependabot[bot]](https://github.com/apps/dependabot))
|
17
|
+
|
18
|
+
## [3.4.0](https://rubygems.org/gems/facterdb/versions/3.4.0) (2024-09-16)
|
19
|
+
|
20
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/3.3.0...3.4.0)
|
21
|
+
|
22
|
+
**Implemented enhancements:**
|
23
|
+
|
24
|
+
- Add Rocky 8 factsets, switch to bento box [\#382](https://github.com/voxpupuli/facterdb/pull/382) ([bastelfreak](https://github.com/bastelfreak))
|
25
|
+
|
3
26
|
## [3.3.0](https://rubygems.org/gems/facterdb/versions/3.3.0) (2024-09-11)
|
4
27
|
|
5
28
|
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/3.2.0...3.3.0)
|
data/README.md
CHANGED
@@ -171,7 +171,9 @@ Please submit issues at https://github.com/voxpupuli/facterdb/issues or PRs in t
|
|
171
171
|
## Release process
|
172
172
|
|
173
173
|
* Update the version in `lib/facterdb/version.rb`
|
174
|
-
*
|
174
|
+
* `bundle config set --local path .vendor`
|
175
|
+
* `bundle config set --local with 'development'`
|
176
|
+
* `CHANGELOG_GITHUB_TOKEN="github_PAT" bundle exec rake changelog`
|
175
177
|
* Commit and PR the results.
|
176
178
|
|
177
179
|
|
@@ -11,8 +11,8 @@
|
|
11
11
|
- FreeBSD 13: 4.0 4.1 4.2 4.3 4.4 4.5
|
12
12
|
- openSUSE 15: 4.0 4.1 4.2 4.3 4.4 4.5 4.7
|
13
13
|
- OracleLinux 7: 4.0 4.2
|
14
|
-
- RedHat 8: 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
15
|
-
- Rocky 8: 4.0 4.1 4.2 4.3 4.4 4.5
|
14
|
+
- RedHat 8: 4.0 4.1 4.10 4.11 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
15
|
+
- Rocky 8: 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
16
16
|
- Rocky 9: 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
17
17
|
- Scientific 7: 4.0 4.2
|
18
18
|
- Solaris 11: 4.0
|
@@ -20,6 +20,9 @@
|
|
20
20
|
- Ubuntu 20.04: 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7
|
21
21
|
- Ubuntu 21.04: 4.0 4.1 4.2
|
22
22
|
- Ubuntu 21.10: 4.0 4.1 4.2
|
23
|
+
- CentOS 10: 4.10 4.11 4.5 4.6 4.7 4.8 4.9
|
24
|
+
- RedHat 9: 4.10 4.11 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
25
|
+
- Ubuntu 24.04: 4.10 4.11 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
23
26
|
- Amazon 2022: 4.2
|
24
27
|
- Archlinux: 4.2 4.3 4.4 4.5 4.6 4.7
|
25
28
|
- CentOS 9: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
@@ -33,12 +36,10 @@
|
|
33
36
|
- OracleLinux 8: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
34
37
|
- OracleLinux 9: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
35
38
|
- Pop!_OS 21.10: 4.2
|
36
|
-
- RedHat 9: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
37
39
|
- SLES 12: 4.2 4.3 4.4
|
38
40
|
- SLES 15: 4.2
|
39
41
|
- Ubuntu 22.04: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
40
42
|
- Ubuntu 22.10: 4.2
|
41
|
-
- Ubuntu 24.04: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
42
43
|
- Windows 10: 4.2 4.3 4.4 4.5 4.6 4.7
|
43
44
|
- Windows 11: 4.2 4.3 4.4 4.5 4.6 4.7
|
44
45
|
- Windows Server 2012 R2: 4.2 4.3 4.4
|
@@ -35,6 +35,16 @@
|
|
35
35
|
- Ubuntu 20.04: Missing Value
|
36
36
|
- Ubuntu 21.04: Missing Value
|
37
37
|
- Ubuntu 21.10: Missing Value
|
38
|
+
- Facter 4.10
|
39
|
+
- CentOS 10: Missing Value
|
40
|
+
- RedHat 8: Missing Value
|
41
|
+
- RedHat 9: Missing Value
|
42
|
+
- Ubuntu 24.04: Missing Value
|
43
|
+
- Facter 4.11
|
44
|
+
- CentOS 10: Missing Value
|
45
|
+
- RedHat 8: Missing Value
|
46
|
+
- RedHat 9: Missing Value
|
47
|
+
- Ubuntu 24.04: Missing Value
|
38
48
|
- Facter 4.2
|
39
49
|
- AlmaLinux 8: Missing Value
|
40
50
|
- AlmaLinux 9: Missing Value
|
@@ -156,6 +166,7 @@
|
|
156
166
|
- AlmaLinux 9: Missing Value
|
157
167
|
- Amazon 2: Missing Value
|
158
168
|
- Archlinux: Missing Value
|
169
|
+
- CentOS 10: Missing Value
|
159
170
|
- CentOS 9: Missing Value
|
160
171
|
- Debian 11: Missing Value
|
161
172
|
- Debian 12: Missing Value
|
@@ -185,6 +196,7 @@
|
|
185
196
|
- AlmaLinux 8: Missing Value
|
186
197
|
- AlmaLinux 9: Missing Value
|
187
198
|
- Archlinux: Missing Value
|
199
|
+
- CentOS 10: Missing Value
|
188
200
|
- CentOS 9: Missing Value
|
189
201
|
- Debian 11: Missing Value
|
190
202
|
- Debian 12: Missing Value
|
@@ -197,6 +209,7 @@
|
|
197
209
|
- OracleLinux 9: Missing Value
|
198
210
|
- RedHat 8: Missing Value
|
199
211
|
- RedHat 9: Missing Value
|
212
|
+
- Rocky 8: Missing Value
|
200
213
|
- Rocky 9: Missing Value
|
201
214
|
- Ubuntu 20.04: Missing Value
|
202
215
|
- Ubuntu 22.04: Missing Value
|
@@ -209,6 +222,7 @@
|
|
209
222
|
- AlmaLinux 8: Missing Value
|
210
223
|
- AlmaLinux 9: Missing Value
|
211
224
|
- Archlinux: Missing Value
|
225
|
+
- CentOS 10: Missing Value
|
212
226
|
- CentOS 9: Missing Value
|
213
227
|
- Debian 11: Missing Value
|
214
228
|
- Debian 12: Missing Value
|
@@ -223,6 +237,7 @@
|
|
223
237
|
- OracleLinux 9: Missing Value
|
224
238
|
- RedHat 8: Missing Value
|
225
239
|
- RedHat 9: Missing Value
|
240
|
+
- Rocky 8: Missing Value
|
226
241
|
- Rocky 9: Missing Value
|
227
242
|
- Ubuntu 20.04: Missing Value
|
228
243
|
- Ubuntu 22.04: Missing Value
|
@@ -234,6 +249,7 @@
|
|
234
249
|
- Facter 4.8
|
235
250
|
- AlmaLinux 8: Missing Value
|
236
251
|
- AlmaLinux 9: Missing Value
|
252
|
+
- CentOS 10: Missing Value
|
237
253
|
- CentOS 9: Missing Value
|
238
254
|
- Debian 11: Missing Value
|
239
255
|
- Debian 12: Missing Value
|
@@ -241,12 +257,14 @@
|
|
241
257
|
- OracleLinux 9: Missing Value
|
242
258
|
- RedHat 8: Missing Value
|
243
259
|
- RedHat 9: Missing Value
|
260
|
+
- Rocky 8: Missing Value
|
244
261
|
- Rocky 9: Missing Value
|
245
262
|
- Ubuntu 22.04: Missing Value
|
246
263
|
- Ubuntu 24.04: Missing Value
|
247
264
|
- Facter 4.9
|
248
265
|
- AlmaLinux 8: Missing Value
|
249
266
|
- AlmaLinux 9: Missing Value
|
267
|
+
- CentOS 10: Missing Value
|
250
268
|
- CentOS 9: Missing Value
|
251
269
|
- Debian 11: Missing Value
|
252
270
|
- Debian 12: Missing Value
|
@@ -254,6 +272,7 @@
|
|
254
272
|
- OracleLinux 9: Missing Value
|
255
273
|
- RedHat 8: Missing Value
|
256
274
|
- RedHat 9: Missing Value
|
275
|
+
- Rocky 8: Missing Value
|
257
276
|
- Rocky 9: Missing Value
|
258
277
|
- Ubuntu 22.04: Missing Value
|
259
278
|
- Ubuntu 24.04: Missing Value
|
@@ -19,9 +19,9 @@
|
|
19
19
|
- OracleLinux 7
|
20
20
|
- Missing Value: 4.0 4.2
|
21
21
|
- RedHat 8
|
22
|
-
- Missing Value: 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
22
|
+
- Missing Value: 4.0 4.1 4.10 4.11 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
23
23
|
- Rocky 8
|
24
|
-
- Missing Value: 4.0 4.1 4.2 4.3 4.4 4.5
|
24
|
+
- Missing Value: 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
25
25
|
- Rocky 9
|
26
26
|
- Missing Value: 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
27
27
|
- Scientific 7
|
@@ -36,6 +36,12 @@
|
|
36
36
|
- Missing Value: 4.0 4.1 4.2
|
37
37
|
- Ubuntu 21.10
|
38
38
|
- Missing Value: 4.0 4.1 4.2
|
39
|
+
- CentOS 10
|
40
|
+
- Missing Value: 4.10 4.11 4.5 4.6 4.7 4.8 4.9
|
41
|
+
- RedHat 9
|
42
|
+
- Missing Value: 4.10 4.11 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
43
|
+
- Ubuntu 24.04
|
44
|
+
- Missing Value: 4.10 4.11 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
39
45
|
- Amazon 2022
|
40
46
|
- Missing Value: 4.2
|
41
47
|
- Archlinux
|
@@ -62,8 +68,6 @@
|
|
62
68
|
- Missing Value: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
63
69
|
- Pop!_OS 21.10
|
64
70
|
- Missing Value: 4.2
|
65
|
-
- RedHat 9
|
66
|
-
- Missing Value: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
67
71
|
- SLES 12
|
68
72
|
- Missing Value: 4.2 4.3 4.4
|
69
73
|
- SLES 15
|
@@ -72,8 +76,6 @@
|
|
72
76
|
- Missing Value: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
73
77
|
- Ubuntu 22.10
|
74
78
|
- Missing Value: 4.2
|
75
|
-
- Ubuntu 24.04
|
76
|
-
- Missing Value: 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9
|
77
79
|
- Windows 10
|
78
80
|
- Missing Value: 4.2 4.3 4.4 4.5 4.6 4.7
|
79
81
|
- Windows 11
|
@@ -65,6 +65,8 @@
|
|
65
65
|
- RedHat 8
|
66
66
|
- Facter 4.0: Missing Value
|
67
67
|
- Facter 4.1: Missing Value
|
68
|
+
- Facter 4.10: Missing Value
|
69
|
+
- Facter 4.11: Missing Value
|
68
70
|
- Facter 4.2: Missing Value
|
69
71
|
- Facter 4.3: Missing Value
|
70
72
|
- Facter 4.4: Missing Value
|
@@ -80,6 +82,10 @@
|
|
80
82
|
- Facter 4.3: Missing Value
|
81
83
|
- Facter 4.4: Missing Value
|
82
84
|
- Facter 4.5: Missing Value
|
85
|
+
- Facter 4.6: Missing Value
|
86
|
+
- Facter 4.7: Missing Value
|
87
|
+
- Facter 4.8: Missing Value
|
88
|
+
- Facter 4.9: Missing Value
|
83
89
|
- Rocky 9
|
84
90
|
- Facter 4.0: Missing Value
|
85
91
|
- Facter 4.1: Missing Value
|
@@ -120,6 +126,36 @@
|
|
120
126
|
- Facter 4.0: Missing Value
|
121
127
|
- Facter 4.1: Missing Value
|
122
128
|
- Facter 4.2: Missing Value
|
129
|
+
- CentOS 10
|
130
|
+
- Facter 4.10: Missing Value
|
131
|
+
- Facter 4.11: Missing Value
|
132
|
+
- Facter 4.5: Missing Value
|
133
|
+
- Facter 4.6: Missing Value
|
134
|
+
- Facter 4.7: Missing Value
|
135
|
+
- Facter 4.8: Missing Value
|
136
|
+
- Facter 4.9: Missing Value
|
137
|
+
- RedHat 9
|
138
|
+
- Facter 4.10: Missing Value
|
139
|
+
- Facter 4.11: Missing Value
|
140
|
+
- Facter 4.2: Missing Value
|
141
|
+
- Facter 4.3: Missing Value
|
142
|
+
- Facter 4.4: Missing Value
|
143
|
+
- Facter 4.5: Missing Value
|
144
|
+
- Facter 4.6: Missing Value
|
145
|
+
- Facter 4.7: Missing Value
|
146
|
+
- Facter 4.8: Missing Value
|
147
|
+
- Facter 4.9: Missing Value
|
148
|
+
- Ubuntu 24.04
|
149
|
+
- Facter 4.10: Missing Value
|
150
|
+
- Facter 4.11: Missing Value
|
151
|
+
- Facter 4.2: Missing Value
|
152
|
+
- Facter 4.3: Missing Value
|
153
|
+
- Facter 4.4: Missing Value
|
154
|
+
- Facter 4.5: Missing Value
|
155
|
+
- Facter 4.6: Missing Value
|
156
|
+
- Facter 4.7: Missing Value
|
157
|
+
- Facter 4.8: Missing Value
|
158
|
+
- Facter 4.9: Missing Value
|
123
159
|
- Amazon 2022
|
124
160
|
- Facter 4.2: Missing Value
|
125
161
|
- Archlinux
|
@@ -204,15 +240,6 @@
|
|
204
240
|
- Facter 4.9: Missing Value
|
205
241
|
- Pop!_OS 21.10
|
206
242
|
- Facter 4.2: Missing Value
|
207
|
-
- RedHat 9
|
208
|
-
- Facter 4.2: Missing Value
|
209
|
-
- Facter 4.3: Missing Value
|
210
|
-
- Facter 4.4: Missing Value
|
211
|
-
- Facter 4.5: Missing Value
|
212
|
-
- Facter 4.6: Missing Value
|
213
|
-
- Facter 4.7: Missing Value
|
214
|
-
- Facter 4.8: Missing Value
|
215
|
-
- Facter 4.9: Missing Value
|
216
243
|
- SLES 12
|
217
244
|
- Facter 4.2: Missing Value
|
218
245
|
- Facter 4.3: Missing Value
|
@@ -230,15 +257,6 @@
|
|
230
257
|
- Facter 4.9: Missing Value
|
231
258
|
- Ubuntu 22.10
|
232
259
|
- Facter 4.2: Missing Value
|
233
|
-
- Ubuntu 24.04
|
234
|
-
- Facter 4.2: Missing Value
|
235
|
-
- Facter 4.3: Missing Value
|
236
|
-
- Facter 4.4: Missing Value
|
237
|
-
- Facter 4.5: Missing Value
|
238
|
-
- Facter 4.6: Missing Value
|
239
|
-
- Facter 4.7: Missing Value
|
240
|
-
- Facter 4.8: Missing Value
|
241
|
-
- Facter 4.9: Missing Value
|
242
260
|
- Windows 10
|
243
261
|
- Facter 4.2: Missing Value
|
244
262
|
- Facter 4.3: Missing Value
|
data/database/table.md
CHANGED
@@ -2,56 +2,57 @@
|
|
2
2
|
|
3
3
|
# Facter version and Operating System coverage
|
4
4
|
|
5
|
-
| operating system | 4.0 | 4.1 | 4.2 | 4.3 | 4.4 | 4.5 | 4.6 | 4.7 | 4.8 | 4.9 |
|
6
|
-
| ------------------------ | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
7
|
-
| AlmaLinux 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
8
|
-
| AlmaLinux 9 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
9
|
-
| Amazon 2 | | | | | | 1 | | | | |
|
10
|
-
| Amazon 2022 | | | 1 | | | | | | | |
|
11
|
-
| Archlinux | | | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
12
|
-
| CentOS 9 | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
13
|
-
|
|
14
|
-
|
|
15
|
-
| Debian
|
16
|
-
|
|
17
|
-
| Fedora
|
18
|
-
| Fedora
|
19
|
-
| Fedora
|
20
|
-
|
|
21
|
-
| FreeBSD
|
22
|
-
| FreeBSD
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
| OracleLinux
|
27
|
-
| OracleLinux
|
28
|
-
|
|
29
|
-
|
|
30
|
-
| RedHat
|
31
|
-
|
|
32
|
-
| Rocky
|
33
|
-
|
|
34
|
-
| SLES
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
| Ubuntu
|
39
|
-
| Ubuntu
|
40
|
-
| Ubuntu 21.
|
41
|
-
| Ubuntu
|
42
|
-
| Ubuntu 22.
|
43
|
-
| Ubuntu
|
44
|
-
|
|
45
|
-
| Windows
|
46
|
-
| Windows
|
47
|
-
| Windows Server 2012
|
48
|
-
| Windows Server
|
49
|
-
| Windows Server 2016
|
50
|
-
| Windows Server
|
51
|
-
| Windows Server 2019
|
52
|
-
| Windows Server
|
53
|
-
| Windows Server 2022
|
54
|
-
|
|
5
|
+
| operating system | 4.0 | 4.1 | 4.2 | 4.3 | 4.4 | 4.5 | 4.6 | 4.7 | 4.8 | 4.9 | 4.10 | 4.11 |
|
6
|
+
| ------------------------ | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
7
|
+
| AlmaLinux 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
8
|
+
| AlmaLinux 9 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
9
|
+
| Amazon 2 | | | | | | 1 | | | | | | |
|
10
|
+
| Amazon 2022 | | | 1 | | | | | | | | | |
|
11
|
+
| Archlinux | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
12
|
+
| CentOS 9 | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
13
|
+
| CentOS 10 | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
14
|
+
| Darwin 20 | | | 1 | | | | | | | | | |
|
15
|
+
| Debian 11 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
16
|
+
| Debian 12 | | | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | | |
|
17
|
+
| Fedora 36 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
18
|
+
| Fedora 37 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
19
|
+
| Fedora 38 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
20
|
+
| Fedora 39 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
21
|
+
| FreeBSD 11 | 1 | 1 | 1 | | | | | | | | | |
|
22
|
+
| FreeBSD 12 | 1 | 1 | 1 | | | 1 | | | | | | |
|
23
|
+
| FreeBSD 13 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | |
|
24
|
+
| Gentoo | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
25
|
+
| OpenBSD 7.5 | | | | | | | | 1 | | | | |
|
26
|
+
| OracleLinux 7 | 1 | | 1 | | | | | | | | | |
|
27
|
+
| OracleLinux 8 | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
28
|
+
| OracleLinux 9 | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
29
|
+
| Pop!_OS 21.10 | | | 1 | | | | | | | | | |
|
30
|
+
| RedHat 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
31
|
+
| RedHat 9 | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
32
|
+
| Rocky 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
33
|
+
| Rocky 9 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
34
|
+
| SLES 12 | | | 1 | 1 | 1 | | | | | | | |
|
35
|
+
| SLES 15 | | | 1 | | | | | | | | | |
|
36
|
+
| Scientific 7 | 1 | | 1 | | | | | | | | | |
|
37
|
+
| Solaris 11 | 1 | | | | | | | | | | | |
|
38
|
+
| Ubuntu 18.04 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | |
|
39
|
+
| Ubuntu 20.04 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
40
|
+
| Ubuntu 21.04 | 1 | 1 | 1 | | | | | | | | | |
|
41
|
+
| Ubuntu 21.10 | 1 | 1 | 1 | | | | | | | | | |
|
42
|
+
| Ubuntu 22.04 | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
|
43
|
+
| Ubuntu 22.10 | | | 1 | | | | | | | | | |
|
44
|
+
| Ubuntu 24.04 | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|
45
|
+
| Windows 10 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
46
|
+
| Windows 11 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
47
|
+
| Windows Server 2012 | | | 1 | 1 | 1 | | | | | | | |
|
48
|
+
| Windows Server 2012 R2 | | | 1 | 1 | 1 | | | | | | | |
|
49
|
+
| Windows Server 2016 | | | 1 | 1 | 1 | | | | | | | |
|
50
|
+
| Windows Server 2016 Core | | | 1 | 1 | 1 | | | | | | | |
|
51
|
+
| Windows Server 2019 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
52
|
+
| Windows Server 2019 Core | | | 1 | 1 | 1 | | | | | | | |
|
53
|
+
| Windows Server 2022 | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | |
|
54
|
+
| Windows Server 2022 Core | | | 1 | 1 | 1 | | | | | | | |
|
55
|
+
| openSUSE 15 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | | | | |
|
55
56
|
|
56
57
|
|
57
58
|
Where the number (1, 2 etc.) are the number of factsets for that OS and facter combination (e.g., x86_64 and i386 architectures).
|
data/facterdb.gemspec
CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.add_development_dependency 'rake', '~> 13.2', '>= 13.2.1'
|
22
22
|
s.add_development_dependency 'rspec', '~> 3.13'
|
23
23
|
|
24
|
-
s.add_development_dependency 'voxpupuli-rubocop', '~>
|
25
|
-
s.
|
26
|
-
s.
|
24
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 3.0.0'
|
25
|
+
s.add_dependency 'facter', '< 5.0.0'
|
26
|
+
s.add_dependency 'jgrep', '~> 1.5', '>= 1.5.4'
|
27
27
|
end
|