facterdb 3.4.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 +15 -0
- data/README.md +3 -1
- data/database/list_arch_os_facter.md +4 -3
- data/database/list_facter_os_arch.md +15 -0
- data/database/list_os_arch_facter.md +7 -5
- data/database/list_os_facter_arch.md +32 -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.7/centos-10-x86_64.facts +490 -0
- data/facts/4.8/centos-10-x86_64.facts +493 -0
- data/facts/4.9/centos-10-x86_64.facts +495 -0
- data/facts/get_facts.sh +39 -26
- data/facts/versions.txt +9 -1
- data/lib/facterdb/version.rb +1 -1
- metadata +18 -8
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facterdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: coveralls
|
@@ -64,14 +63,14 @@ dependencies:
|
|
64
63
|
requirements:
|
65
64
|
- - "~>"
|
66
65
|
- !ruby/object:Gem::Version
|
67
|
-
version:
|
66
|
+
version: 3.0.0
|
68
67
|
type: :development
|
69
68
|
prerelease: false
|
70
69
|
version_requirements: !ruby/object:Gem::Requirement
|
71
70
|
requirements:
|
72
71
|
- - "~>"
|
73
72
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
73
|
+
version: 3.0.0
|
75
74
|
- !ruby/object:Gem::Dependency
|
76
75
|
name: facter
|
77
76
|
requirement: !ruby/object:Gem::Requirement
|
@@ -183,6 +182,14 @@ files:
|
|
183
182
|
- facts/4.1/ubuntu-20.04-x86_64.facts
|
184
183
|
- facts/4.1/ubuntu-21.04-x86_64.facts
|
185
184
|
- facts/4.1/ubuntu-21.10-x86_64.facts
|
185
|
+
- facts/4.10/centos-10-x86_64.facts
|
186
|
+
- facts/4.10/redhat-8-x86_64.facts
|
187
|
+
- facts/4.10/redhat-9-x86_64.facts
|
188
|
+
- facts/4.10/ubuntu-24.04-x86_64.facts
|
189
|
+
- facts/4.11/centos-10-x86_64.facts
|
190
|
+
- facts/4.11/redhat-8-x86_64.facts
|
191
|
+
- facts/4.11/redhat-9-x86_64.facts
|
192
|
+
- facts/4.11/ubuntu-24.04-x86_64.facts
|
186
193
|
- facts/4.2/almalinux-8-x86_64.facts
|
187
194
|
- facts/4.2/almalinux-9-x86_64.facts
|
188
195
|
- facts/4.2/amazon-2022-x86_64.facts
|
@@ -303,6 +310,7 @@ files:
|
|
303
310
|
- facts/4.5/almalinux-9-x86_64.facts
|
304
311
|
- facts/4.5/amazon-2-x86_64.facts
|
305
312
|
- facts/4.5/archlinux-x86_64.facts
|
313
|
+
- facts/4.5/centos-10-x86_64.facts
|
306
314
|
- facts/4.5/centos-9-x86_64.facts
|
307
315
|
- facts/4.5/debian-11-x86_64.facts
|
308
316
|
- facts/4.5/debian-12-x86_64.facts
|
@@ -331,6 +339,7 @@ files:
|
|
331
339
|
- facts/4.6/almalinux-8-x86_64.facts
|
332
340
|
- facts/4.6/almalinux-9-x86_64.facts
|
333
341
|
- facts/4.6/archlinux-x86_64.facts
|
342
|
+
- facts/4.6/centos-10-x86_64.facts
|
334
343
|
- facts/4.6/centos-9-x86_64.facts
|
335
344
|
- facts/4.6/debian-11-x86_64.facts
|
336
345
|
- facts/4.6/debian-12-x86_64.facts
|
@@ -355,6 +364,7 @@ files:
|
|
355
364
|
- facts/4.7/almalinux-8-x86_64.facts
|
356
365
|
- facts/4.7/almalinux-9-x86_64.facts
|
357
366
|
- facts/4.7/archlinux-x86_64.facts
|
367
|
+
- facts/4.7/centos-10-x86_64.facts
|
358
368
|
- facts/4.7/centos-9-x86_64.facts
|
359
369
|
- facts/4.7/debian-11-x86_64.facts
|
360
370
|
- facts/4.7/debian-12-x86_64.facts
|
@@ -380,6 +390,7 @@ files:
|
|
380
390
|
- facts/4.7/windows-2022-x86_64.facts
|
381
391
|
- facts/4.8/almalinux-8-x86_64.facts
|
382
392
|
- facts/4.8/almalinux-9-x86_64.facts
|
393
|
+
- facts/4.8/centos-10-x86_64.facts
|
383
394
|
- facts/4.8/centos-9-x86_64.facts
|
384
395
|
- facts/4.8/debian-11-x86_64.facts
|
385
396
|
- facts/4.8/debian-12-x86_64.facts
|
@@ -393,6 +404,7 @@ files:
|
|
393
404
|
- facts/4.8/ubuntu-24.04-x86_64.facts
|
394
405
|
- facts/4.9/almalinux-8-x86_64.facts
|
395
406
|
- facts/4.9/almalinux-9-x86_64.facts
|
407
|
+
- facts/4.9/centos-10-x86_64.facts
|
396
408
|
- facts/4.9/centos-9-x86_64.facts
|
397
409
|
- facts/4.9/debian-11-x86_64.facts
|
398
410
|
- facts/4.9/debian-12-x86_64.facts
|
@@ -437,7 +449,6 @@ homepage: http://github.com/voxpupuli/facterdb
|
|
437
449
|
licenses:
|
438
450
|
- Apache-2.0
|
439
451
|
metadata: {}
|
440
|
-
post_install_message:
|
441
452
|
rdoc_options: []
|
442
453
|
require_paths:
|
443
454
|
- lib
|
@@ -452,8 +463,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
452
463
|
- !ruby/object:Gem::Version
|
453
464
|
version: '0'
|
454
465
|
requirements: []
|
455
|
-
rubygems_version: 3.
|
456
|
-
signing_key:
|
466
|
+
rubygems_version: 3.6.2
|
457
467
|
specification_version: 4
|
458
468
|
summary: A Database of OS facts provided by Facter
|
459
469
|
test_files: []
|