facterdb 1.21.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +17 -0
  3. data/.github/workflows/release.yml +3 -3
  4. data/.github/workflows/test.yml +28 -5
  5. data/.rubocop.yml +5 -0
  6. data/.rubocop_todo.yml +239 -0
  7. data/CHANGELOG.md +16 -0
  8. data/Gemfile +1 -5
  9. data/README.md +124 -122
  10. data/Rakefile +56 -51
  11. data/facterdb.gemspec +7 -7
  12. data/facts/4.1/centos-7-x86_64.facts +582 -0
  13. data/facts/4.1/debian-10-x86_64.facts +519 -0
  14. data/facts/4.2/debian-12-i386.facts +593 -0
  15. data/facts/4.2/debian-12-x86_64.facts +593 -0
  16. data/facts/4.2/fedora-38-x86_64.facts +656 -0
  17. data/facts/4.3/almalinux-8-x86_64.facts +551 -0
  18. data/facts/4.3/almalinux-9-x86_64.facts +525 -0
  19. data/facts/4.3/centos-7-x86_64.facts +592 -0
  20. data/facts/4.3/debian-10-x86_64.facts +526 -0
  21. data/facts/4.3/debian-11-x86_64.facts +521 -0
  22. data/facts/4.3/debian-12-i386.facts +593 -0
  23. data/facts/4.3/debian-12-x86_64.facts +593 -0
  24. data/facts/4.3/fedora-36-x86_64.facts +507 -0
  25. data/facts/4.3/fedora-37-x86_64.facts +512 -0
  26. data/facts/4.3/fedora-38-x86_64.facts +656 -0
  27. data/facts/4.3/opensuse-15-x86_64.facts +533 -0
  28. data/facts/4.3/redhat-8-x86_64.facts +526 -0
  29. data/facts/4.3/rocky-8-x86_64.facts +545 -0
  30. data/facts/4.3/rocky-9-x86_64.facts +626 -0
  31. data/facts/4.3/sles-12-x86_64.facts +908 -0
  32. data/facts/4.3/ubuntu-18.04-x86_64.facts +557 -0
  33. data/facts/4.3/ubuntu-20.04-x86_64.facts +647 -0
  34. data/facts/4.3/ubuntu-22.04-x86_64.facts +655 -0
  35. data/facts/4.3/windows-10-x86_64.facts +182 -0
  36. data/facts/4.3/windows-11-x86_64.facts +182 -0
  37. data/facts/4.3/windows-2012 r2-x86_64.facts +179 -0
  38. data/facts/4.3/windows-2012-x86_64.facts +179 -0
  39. data/facts/4.3/windows-2016-core-x86_64.facts +181 -0
  40. data/facts/4.3/windows-2016-x86_64.facts +181 -0
  41. data/facts/4.3/windows-2019-core-x86_64.facts +181 -0
  42. data/facts/4.3/windows-2019-x86_64.facts +181 -0
  43. data/facts/4.3/windows-2022-core-x86_64.facts +183 -0
  44. data/facts/4.3/windows-2022-x86_64.facts +183 -0
  45. data/facts/4.4/almalinux-8-x86_64.facts +551 -0
  46. data/facts/4.4/almalinux-9-x86_64.facts +525 -0
  47. data/facts/4.4/centos-7-x86_64.facts +592 -0
  48. data/facts/4.4/debian-10-x86_64.facts +526 -0
  49. data/facts/4.4/debian-11-x86_64.facts +521 -0
  50. data/facts/4.4/debian-12-i386.facts +593 -0
  51. data/facts/4.4/debian-12-x86_64.facts +593 -0
  52. data/facts/4.4/fedora-36-x86_64.facts +507 -0
  53. data/facts/4.4/fedora-37-x86_64.facts +512 -0
  54. data/facts/4.4/fedora-38-x86_64.facts +656 -0
  55. data/facts/4.4/opensuse-15-x86_64.facts +514 -0
  56. data/facts/4.4/redhat-8-x86_64.facts +526 -0
  57. data/facts/4.4/rocky-8-x86_64.facts +545 -0
  58. data/facts/4.4/rocky-9-x86_64.facts +626 -0
  59. data/facts/4.4/sles-12-x86_64.facts +908 -0
  60. data/facts/4.4/ubuntu-18.04-x86_64.facts +557 -0
  61. data/facts/4.4/ubuntu-20.04-x86_64.facts +647 -0
  62. data/facts/4.4/ubuntu-22.04-x86_64.facts +655 -0
  63. data/facts/4.4/windows-10-x86_64.facts +182 -0
  64. data/facts/4.4/windows-11-x86_64.facts +186 -0
  65. data/facts/4.4/windows-2012 r2-x86_64.facts +179 -0
  66. data/facts/4.4/windows-2012-x86_64.facts +179 -0
  67. data/facts/4.4/windows-2016-core-x86_64.facts +181 -0
  68. data/facts/4.4/windows-2016-x86_64.facts +181 -0
  69. data/facts/4.4/windows-2019-core-x86_64.facts +181 -0
  70. data/facts/4.4/windows-2019-x86_64.facts +181 -0
  71. data/facts/4.4/windows-2022-core-x86_64.facts +183 -0
  72. data/facts/4.4/windows-2022-x86_64.facts +183 -0
  73. data/facts/Gemfile +3 -7
  74. data/facts/Vagrantfile +313 -298
  75. data/facts/get_facts.sh +67 -9
  76. data/lib/facterdb/bin.rb +1 -1
  77. data/lib/facterdb/version.rb +1 -1
  78. data/lib/facterdb.rb +40 -32
  79. data/rakelib/rhel_alts.rake +8 -14
  80. data/spec/facterdb_spec.rb +37 -37
  81. data/spec/facts_spec.rb +13 -7
  82. metadata +84 -6
data/README.md CHANGED
@@ -59,128 +59,130 @@ FacterDB::get_facts('osfamily=Debian')
59
59
 
60
60
  ## Facter version and Operating System coverage
61
61
 
62
- | operating system | 1.6 | 1.7 | 2.0 | 2.1 | 2.2 | 2.3 | 2.4 | 2.5 | 3.0 | 3.1 | 3.2 | 3.3 | 3.4 | 3.5 | 3.6 | 3.7 | 3.8 | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 | 3.14 | 4.0 | 4.1 | 4.2 |
63
- | --------------------------- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
64
- | AIX 5300 | | | | | | | | | | | 1 | | | | | | | | | | | | | | | |
65
- | AIX 6100 | | | | | | | | | | | 1 | | | | | | | | | | | | | | | |
66
- | AIX 7100 | | | | | | | | | | | 1 | | | | | | | 1 | | | | | | | | |
67
- | AlmaLinux 8 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
68
- | AlmaLinux 9 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
69
- | Amazon | 3 | | | | 1 | 1 | 1 | | | | | | | | | | | | | | | | | | | |
70
- | Amazon 2 | | | | | | | | 1 | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
71
- | Amazon 4 | | 3 | 3 | 3 | | | | | 1 | 1 | | 1 | | | | | | | | | | | | | | |
72
- | Amazon 2016 | | | | | 1 | 1 | 1 | 1 | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
73
- | Amazon 2017 | | | | | 1 | 1 | 1 | | | | | | | | 1 | | | | | | | | | | | |
74
- | Amazon 2022 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 |
75
- | Archlinux | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
76
- | CentOS 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | |
77
- | CentOS 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | |
78
- | CentOS 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | | 1 |
79
- | CentOS 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | 1 |
80
- | CentOS 9 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | | | | 1 | | | 1 |
81
- | Darwin | | | 4 | 4 | | | | | | | | | | | | | | | | | | | | | | |
82
- | Darwin 14 | | | 2 | 2 | 2 | 2 | 2 | 1 | | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
83
- | Darwin 15 | | | | | 1 | 1 | 1 | 1 | | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | |
84
- | Darwin 16 | | | | | 1 | 1 | 1 | 1 | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
85
- | Darwin 17 | | | | | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | | | |
86
- | Darwin 18 | | | | | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | | 1 | 1 | | | |
87
- | Darwin 19 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | |
88
- | Darwin 20 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 |
89
- | Debian 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | | | | | | | | | | | | | | | | |
90
- | Debian 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | |
91
- | Debian 8 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
92
- | Debian 9 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | 2 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
93
- | Debian 10 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | | 1 | 1 | 1 | | 1 |
94
- | Debian 11 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
95
- | Fedora 19 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
96
- | Fedora 22 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | 2 | | | | | | | | | | | | | | | | |
97
- | Fedora 23 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | 2 | | | | | | | | | | | | | | | | |
98
- | Fedora 24 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | |
99
- | Fedora 25 | | | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | 2 | 2 | 2 | | | | | | | | | |
100
- | Fedora 26 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | | | | | | |
101
- | Fedora 27 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | 1 | | | | | 1 | | | | | | |
102
- | Fedora 28 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | |
103
- | Fedora 29 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | |
104
- | Fedora 30 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | | | 1 | | | |
105
- | Fedora 32 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
106
- | Fedora 33 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
107
- | Fedora 34 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
108
- | Fedora 35 | | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 |
109
- | Fedora 36 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 |
110
- | Fedora 37 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
111
- | FreeBSD 9 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
112
- | FreeBSD 10 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | | | | | | | | | | 1 | | | | | | | | |
113
- | FreeBSD 11 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 |
114
- | FreeBSD 12 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 |
115
- | FreeBSD 13 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
116
- | Gentoo | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | 1 | | | 1 | | | |
117
- | LinuxMint 18 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | | 1 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
118
- | LinuxMint 19 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | |
119
- | OpenBSD 5.7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
120
- | OpenBSD 5.8 | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
121
- | OpenBSD 5.9 | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
122
- | OpenBSD 6.0 | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
123
- | OpenBSD 6.2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | 2 | | | | | | | | | |
124
- | OpenBSD 6.3 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | 2 | | | | | | | |
125
- | OpenBSD 6.4 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | 1 | | | | | |
126
- | OpenSuSE 12 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
127
- | OpenSuSE 13 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
128
- | OpenSuSE 15 | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | |
129
- | OpenSuSE 42 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | |
130
- | OracleLinux 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | | | | |
131
- | OracleLinux 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 2 | 1 | 1 | 1 | | | 1 |
132
- | OracleLinux 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | | 1 |
133
- | OracleLinux 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | 1 |
134
- | OracleLinux 9 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
135
- | Pop!_OS 21.10 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
136
- | Raspbian 9 | | | | | | | 2 | | | | | | | | | | | | | | | | | | | |
137
- | Raspbian 10 | | | | | | | | | | | | | | | | | | | | 2 | | | | | | |
138
- | RedHat 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | |
139
- | RedHat 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | |
140
- | RedHat 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | | 1 |
141
- | RedHat 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
142
- | RedHat 9 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
143
- | Rocky 8 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
144
- | Rocky 9 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
145
- | SLES 11 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | |
146
- | SLES 12 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
147
- | SLES 15 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | 1 |
148
- | Scientific 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | |
149
- | Scientific 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | |
150
- | Scientific 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | | 1 |
151
- | Solaris 10 | | | | | | | | 1 | | | | | | | | | | 1 | | 1 | | | | | | |
152
- | Solaris 11 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 1 | | | | | | | | | | | | 2 | | | 2 | 1 | | |
153
- | Ubuntu 10.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
154
- | Ubuntu 12.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | | | | | | | | | | | | |
155
- | Ubuntu 14.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
156
- | Ubuntu 14.10 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
157
- | Ubuntu 15.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | |
158
- | Ubuntu 15.10 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | | 2 | 2 | 2 | | | | | | | | | | | | |
159
- | Ubuntu 16.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
160
- | Ubuntu 16.10 | | | | | | | | | | | | | | | 2 | | | | | | | | | | | |
161
- | Ubuntu 18.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
162
- | Ubuntu 20.04 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
163
- | Ubuntu 21.04 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
164
- | Ubuntu 21.10 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 |
165
- | Ubuntu 22.04 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 |
166
- | Ubuntu 22.10 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 |
167
- | VirtuozzoLinux 7 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | |
168
- | Windows 7 | | | | 1 | 1 | 1 | 2 | 1 | 2 | 2 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
169
- | Windows 8.1 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
170
- | Windows 10 | | | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | 1 |
171
- | Windows 11 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
172
- | Windows Server 2008 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
173
- | Windows Server 2008 R2 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
174
- | Windows Server 2012 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
175
- | Windows Server 2012 R2 | | | | 1 | 1 | 1 | 2 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
176
- | Windows Server 2012 R2 Core | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | |
177
- | Windows Server 2016 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
178
- | Windows Server 2016 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
179
- | Windows Server 2019 | | | | | | | | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 |
180
- | Windows Server 2019 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
181
- | Windows Server 2021 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
182
- | Windows Server 2021 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 |
183
- | openSUSE 15 | | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 |
62
+ | operating system | 1.6 | 1.7 | 2.0 | 2.1 | 2.2 | 2.3 | 2.4 | 2.5 | 3.0 | 3.1 | 3.2 | 3.3 | 3.4 | 3.5 | 3.6 | 3.7 | 3.8 | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 | 3.14 | 4.0 | 4.1 | 4.2 | 4.3 | 4.4 |
63
+ | --------------------------- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
64
+ | AIX 5300 | | | | | | | | | | | 1 | | | | | | | | | | | | | | | | | |
65
+ | AIX 6100 | | | | | | | | | | | 1 | | | | | | | | | | | | | | | | | |
66
+ | AIX 7100 | | | | | | | | | | | 1 | | | | | | | 1 | | | | | | | | | | |
67
+ | AlmaLinux 8 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 |
68
+ | AlmaLinux 9 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 |
69
+ | Amazon | 3 | | | | 1 | 1 | 1 | | | | | | | | | | | | | | | | | | | | | |
70
+ | Amazon 2 | | | | | | | | 1 | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
71
+ | Amazon 4 | | 3 | 3 | 3 | | | | | 1 | 1 | | 1 | | | | | | | | | | | | | | | | |
72
+ | Amazon 2016 | | | | | 1 | 1 | 1 | 1 | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
73
+ | Amazon 2017 | | | | | 1 | 1 | 1 | | | | | | | | 1 | | | | | | | | | | | | | |
74
+ | Amazon 2022 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 | | |
75
+ | Archlinux | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 | | |
76
+ | CentOS 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | |
77
+ | CentOS 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | | | |
78
+ | CentOS 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
79
+ | CentOS 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | 1 | | |
80
+ | CentOS 9 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | | | | 1 | | | 1 | | |
81
+ | Darwin | | | 4 | 4 | | | | | | | | | | | | | | | | | | | | | | | | |
82
+ | Darwin 14 | | | 2 | 2 | 2 | 2 | 2 | 1 | | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | |
83
+ | Darwin 15 | | | | | 1 | 1 | 1 | 1 | | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | |
84
+ | Darwin 16 | | | | | 1 | 1 | 1 | 1 | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
85
+ | Darwin 17 | | | | | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
86
+ | Darwin 18 | | | | | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | | 1 | 1 | | | | | |
87
+ | Darwin 19 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | | | |
88
+ | Darwin 20 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 | | |
89
+ | Debian 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | | | | | | | | | | | | | | | | | | |
90
+ | Debian 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | |
91
+ | Debian 8 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
92
+ | Debian 9 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | 2 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 | | |
93
+ | Debian 10 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
94
+ | Debian 11 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 |
95
+ | Debian 12 | | | | | | | | | | | | | | | | | | | | | | | | | | 2 | 2 | 2 |
96
+ | Fedora 19 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
97
+ | Fedora 22 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | 2 | | | | | | | | | | | | | | | | | | |
98
+ | Fedora 23 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | 2 | | | | | | | | | | | | | | | | | | |
99
+ | Fedora 24 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | |
100
+ | Fedora 25 | | | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | 2 | 2 | 2 | | | | | | | | | | | |
101
+ | Fedora 26 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | | | | | | | | |
102
+ | Fedora 27 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | 1 | | | | | 1 | | | | | | | | |
103
+ | Fedora 28 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | | | |
104
+ | Fedora 29 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | | | |
105
+ | Fedora 30 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | | | 1 | | | | | |
106
+ | Fedora 32 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | |
107
+ | Fedora 33 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | |
108
+ | Fedora 34 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | |
109
+ | Fedora 35 | | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | | |
110
+ | Fedora 36 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 | 1 | 1 |
111
+ | Fedora 37 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 |
112
+ | Fedora 38 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 |
113
+ | FreeBSD 9 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
114
+ | FreeBSD 10 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | | | | | | | | | | 1 | | | | | | | | | | |
115
+ | FreeBSD 11 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | | |
116
+ | FreeBSD 12 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | | |
117
+ | FreeBSD 13 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | |
118
+ | Gentoo | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | 1 | | | 1 | | | | | |
119
+ | LinuxMint 18 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | | 1 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
120
+ | LinuxMint 19 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | | | |
121
+ | OpenBSD 5.7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
122
+ | OpenBSD 5.8 | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
123
+ | OpenBSD 5.9 | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
124
+ | OpenBSD 6.0 | | | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
125
+ | OpenBSD 6.2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | 2 | | | | | | | | | | | |
126
+ | OpenBSD 6.3 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | 2 | | | | | | | | | |
127
+ | OpenBSD 6.4 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | | 1 | | | | | | | |
128
+ | OpenSuSE 12 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
129
+ | OpenSuSE 13 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
130
+ | OpenSuSE 15 | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | | | |
131
+ | OpenSuSE 42 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | |
132
+ | OracleLinux 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | | | | | | |
133
+ | OracleLinux 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 2 | 1 | 1 | 1 | | | 1 | | |
134
+ | OracleLinux 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | | 1 | | |
135
+ | OracleLinux 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | 1 | | |
136
+ | OracleLinux 9 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
137
+ | Pop!_OS 21.10 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
138
+ | Raspbian 9 | | | | | | | 2 | | | | | | | | | | | | | | | | | | | | | |
139
+ | Raspbian 10 | | | | | | | | | | | | | | | | | | | | 2 | | | | | | | | |
140
+ | RedHat 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | |
141
+ | RedHat 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | | | |
142
+ | RedHat 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | | 1 | | |
143
+ | RedHat 8 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
144
+ | RedHat 9 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
145
+ | Rocky 8 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 |
146
+ | Rocky 9 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 |
147
+ | SLES 11 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | | | |
148
+ | SLES 12 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 | 1 | 1 |
149
+ | SLES 15 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | | 1 | 1 | 1 | 1 | | | 1 | | |
150
+ | Scientific 5 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | |
151
+ | Scientific 6 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | | | | | |
152
+ | Scientific 7 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | | 2 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | | 1 | | |
153
+ | Solaris 10 | | | | | | | | 1 | | | | | | | | | | 1 | | 1 | | | | | | | | |
154
+ | Solaris 11 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 1 | | | | | | | | | | | | 2 | | | 2 | 1 | | | | |
155
+ | Ubuntu 10.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
156
+ | Ubuntu 12.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | | | | | | | | | | | | | | |
157
+ | Ubuntu 14.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
158
+ | Ubuntu 14.10 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
159
+ | Ubuntu 15.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | | | | | | | | | | | |
160
+ | Ubuntu 15.10 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | | 2 | 2 | 2 | | | | | | | | | | | | | | |
161
+ | Ubuntu 16.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | |
162
+ | Ubuntu 16.10 | | | | | | | | | | | | | | | 2 | | | | | | | | | | | | | |
163
+ | Ubuntu 18.04 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
164
+ | Ubuntu 20.04 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 | 1 |
165
+ | Ubuntu 21.04 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | |
166
+ | Ubuntu 21.10 | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | | |
167
+ | Ubuntu 22.04 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 | 1 | 1 |
168
+ | Ubuntu 22.10 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | 1 | | |
169
+ | VirtuozzoLinux 7 | | | | | | | | | | | | | | | | | | | | | | | 1 | | | | | |
170
+ | Windows 7 | | | | 1 | 1 | 1 | 2 | 1 | 2 | 2 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | |
171
+ | Windows 8.1 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | |
172
+ | Windows 10 | | | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | | | 1 | | |
173
+ | Windows Server 2008 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | |
174
+ | Windows Server 2008 R2 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | | | | | | | | | | | |
175
+ | Windows Server 2012 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 | | |
176
+ | Windows Server 2012 R2 | | | | 1 | 1 | 1 | 2 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 | | |
177
+ | Windows Server 2012 R2 Core | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | | | |
178
+ | Windows Server 2016 | | | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 | | |
179
+ | Windows Server 2016 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
180
+ | Windows Server 2019 | | | | | | | | 1 | 1 | 1 | | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | | | 1 | | |
181
+ | Windows Server 2019 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
182
+ | Windows Server 2022 Core | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
183
+ | openSUSE 15 | | | | | | | | | | | | | | | | | | | | | | | | 1 | 1 | 1 | 1 | 1 |
184
+ | windows 11 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
185
+ | windows 2022 | | | | | | | | | | | | | | | | | | | | | | | | | | 1 | | |
184
186
 
185
187
  Where the number (1, 2 etc.) are the number of factsets for that OS and facter combination (e.g., x86_64 and i386 architectures).
186
188
 
data/Rakefile CHANGED
@@ -11,10 +11,10 @@ begin
11
11
  GitHubChangelogGenerator::RakeTask.new :changelog do |config|
12
12
  config.future_release = FacterDB::Version::STRING
13
13
  config.include_labels = %w[enhancement bug]
14
- config.exclude_labels = %w[duplicate question invalid wontfix maintenance]
14
+ config.exclude_labels = %w[duplicate question invalid wontfix maintenance github_actions]
15
15
  config.user = 'voxpupuli'
16
16
  config.project = 'facterdb'
17
- config.release_url = "https://rubygems.org/gems/facterdb/versions/%s"
17
+ config.release_url = 'https://rubygems.org/gems/facterdb/versions/%s'
18
18
  config.since_tag = '0.3.11'
19
19
  end
20
20
  rescue LoadError
@@ -24,23 +24,22 @@ rescue LoadError
24
24
  end
25
25
  end
26
26
 
27
-
28
27
  # Generate a human-friendly OS label based on a given factset
29
28
  def factset_to_os_label(fs)
30
29
  os_rel = '???'
31
30
  os_name = '????'
32
31
  if fs.key?(:os) && fs[:os].key?('release') && (fs[:os]['release']['major'] =~ /\d/)
33
32
  os_name = fs[:os]['name']
34
- fail = Hash.new
33
+ fail = {}
35
34
  os = fs[:os]
36
35
  distro = os.fetch('lsb', os.fetch('distro', fail))
37
- if distro.key?('id')
38
- os_id = distro['id']
39
- elsif distro.key?('distid')
40
- os_id = distro['distid']
41
- else
42
- os_id = '@@@@@@@@@@'
43
- end
36
+ os_id = if distro.key?('id')
37
+ distro['id']
38
+ elsif distro.key?('distid')
39
+ distro['distid']
40
+ else
41
+ '@@@@@@@@@@'
42
+ end
44
43
  os_rel = fs[:os]['release']['major']
45
44
  os__rel = fs[:os]['release']['full']
46
45
  elsif fs.key? :operatingsystem
@@ -49,50 +48,50 @@ def factset_to_os_label(fs)
49
48
  os_rel = fs.fetch(:operatingsystemmajrelease, fs.fetch(:lsbmajdistrelease, nil))
50
49
  os__rel = fs.fetch(:lsbdistrelease, fs.fetch(:operatingsystemrelease, '@@@'))
51
50
  else
52
- require 'pp'
53
51
  pp fs
54
- fail( 'ERROR: unrecognized facterset format' )
52
+ raise('ERROR: unrecognized facterset format')
55
53
  end
56
54
  # Sanitize OS names to match the formats used in the facterdb README
57
55
  label = "#{os_name} #{os_rel}"
58
- if os_name =~ /^(Archlinux|Gentoo)$/
56
+ if /^(Archlinux|Gentoo)$/.match?(os_name)
59
57
  label = os_name
60
58
  elsif os_name =~ /^(SLES|FreeBSD|OpenSuSE)$/ ||
61
- (os_name =~ /^(RedHat|Scientific|OracleLinux|CentOS|AlmaLinux)/ && os_rel.nil?)
59
+ (os_name =~ /^(RedHat|Scientific|OracleLinux|CentOS|AlmaLinux)/ && os_rel.nil?)
62
60
  label = "#{os_name} #{os__rel.split('.').first}"
63
- elsif os_name =~ /^(OpenBSD|Ubuntu|Fedora)$/
61
+ elsif /^(OpenBSD|Ubuntu|Fedora)$/.match?(os_name)
64
62
  label = "#{os_name} #{os__rel}"
65
- elsif os_name =~ /^(Solaris)/
66
- if fs.key?(:os) && fs[:os].key?('release') && (fs[:os]['release']['major'] =~ /\d/)
67
- label = "#{os_name} #{os_rel}"
68
- elsif fs.key?(:operatingsystemmajrelease)
69
- label = "#{os_name} #{os_rel}"
70
- else
71
- label = "#{os_name} #{os__rel.split('.')[1]}"
72
- end
73
- elsif fs[:_facterdb_filename] =~ /sles-15-/
74
- label = "SLES 15"
63
+ elsif /^(Solaris)/.match?(os_name)
64
+ label = if fs.key?(:os) && fs[:os].key?('release') && (fs[:os]['release']['major'] =~ /\d/)
65
+ "#{os_name} #{os_rel}"
66
+ elsif fs.key?(:operatingsystemmajrelease)
67
+ "#{os_name} #{os_rel}"
68
+ else
69
+ "#{os_name} #{os__rel.split('.')[1]}"
70
+ end
71
+ elsif /sles-15-/.match?(fs[:_facterdb_filename])
72
+ label = 'SLES 15'
75
73
  elsif os_name.start_with?('Debian') && os_id == 'LinuxMint'
76
74
  label = "#{os_id} #{fs[:lsbmajdistrelease]}"
77
75
  elsif os_name.start_with?('Debian') && os_id == 'Raspbian'
78
76
  label = "#{os_id} #{os_rel}"
79
- elsif os_name =~ /^windows$/
77
+ elsif /^windows$/.match?(os_name)
80
78
  db_filename = fs[:_facterdb_filename] || 'there_is_no_filename'
81
- if db_filename =~ /windows-10-/
82
- label = "Windows 10"
83
- elsif db_filename =~ /windows-7-/
84
- label = "Windows 7"
85
- elsif db_filename =~ /windows-8[\d.]*-/
86
- label = "Windows #{os__rel.sub('6.2.9200','8').sub('6.3.9600','8.1')}"
87
- elsif db_filename =~ /windows-.+-core-/
88
- label = "Windows Server #{os__rel.sub('6.3.9600','2012 R2')} Core"
89
- elsif db_filename =~ /windows-2008/ || db_filename =~ /windows-2012/ || db_filename =~ /windows-2016/
90
- label = "Windows Server #{os__rel.sub('6.1.7600','2008 R2').sub('6.3.9600','2012 R2').sub('10.0.14393', '2016')}"
91
- elsif db_filename =~ /windows-2019/
92
- label = 'Windows Server 2019'
93
- else
94
- label = "#{os_name} #{os__rel}"
95
- end
79
+ label = if /windows-10-/.match?(db_filename)
80
+ 'Windows 10'
81
+ elsif /windows-7-/.match?(db_filename)
82
+ 'Windows 7'
83
+ elsif /windows-8[\d.]*-/.match?(db_filename)
84
+ "Windows #{os__rel.sub('6.2.9200', '8').sub('6.3.9600', '8.1')}"
85
+ elsif /windows-.+-core-/.match?(db_filename)
86
+ "Windows Server #{os__rel.sub('6.3.9600', '2012 R2')} Core"
87
+ elsif db_filename =~ /windows-2008/ || db_filename =~ /windows-2012/ || db_filename =~ /windows-2016/
88
+ "Windows Server #{os__rel.sub('6.1.7600', '2008 R2').sub('6.3.9600', '2012 R2').sub('10.0.14393',
89
+ '2016')}"
90
+ elsif /windows-2019/.match?(db_filename)
91
+ 'Windows Server 2019'
92
+ else
93
+ "#{os_name} #{os__rel}"
94
+ end
96
95
  end
97
96
 
98
97
  label
@@ -102,15 +101,15 @@ desc 'generate a markdown table of Facter/OS coverage (for the README)'
102
101
  task :table do
103
102
  require_relative 'lib/facterdb'
104
103
  # Turn on the source injection
105
- old_env = ENV['FACTERDB_INJECT_SOURCE']
104
+ old_env = ENV.fetch('FACTERDB_INJECT_SOURCE', nil)
106
105
  ENV['FACTERDB_INJECT_SOURCE'] = 'true'
107
- factsets = FacterDB.get_facts()
106
+ factsets = FacterDB.get_facts
108
107
  # Restore the source injection
109
108
  ENV['FACTERDB_INJECT_SOURCE'] = old_env
110
109
 
111
- facter_versions = factsets.map { |x|
110
+ facter_versions = factsets.map do |x|
112
111
  Gem::Version.new(x[:facterversion].split('.')[0..1].join('.'))
113
- }.uniq.sort.map(&:to_s)
112
+ end.uniq.sort.map(&:to_s)
114
113
  os_facter_matrix = {}
115
114
 
116
115
  # Process the facts and create a hash of all the OS and facter combinations
@@ -134,13 +133,13 @@ task :table do
134
133
  new_readme = readme[0..readme.index { |r| r.start_with?('| ') } - 1]
135
134
 
136
135
  # Write out a nice table
137
- os_version_width = (os_versions.map{|x| x.size } + [17]).max
138
- new_readme << "| #{'operating system'.center(os_version_width)} |#{facter_versions.map{|x| " #{x} |" }.join}"
139
- new_readme << "| #{'-' * (os_version_width)} |#{facter_versions.map{|x| " --- |" }.join}"
136
+ os_version_width = (os_versions.map { |x| x.size } + [17]).max
137
+ new_readme << "| #{'operating system'.center(os_version_width)} |#{facter_versions.map { |x| " #{x} |" }.join}"
138
+ new_readme << "| #{'-' * os_version_width} |#{facter_versions.map { |_x| ' --- |' }.join}"
140
139
  os_versions.each do |label|
141
- fvs = facter_versions.map{ |facter_version| os_facter_matrix[label][facter_version] || 0 }
140
+ fvs = facter_versions.map { |facter_version| os_facter_matrix[label][facter_version] || 0 }
142
141
  row = "| #{label.ljust(os_version_width)} |"
143
- fvs.each { |fv| row += (fv > 0? " #{fv.to_s.center(3)} |" : " |" ) }
142
+ fvs.each { |fv| row += ((fv > 0) ? " #{fv.to_s.center(3)} |" : ' |') }
144
143
  new_readme << row
145
144
  end
146
145
 
@@ -149,4 +148,10 @@ task :table do
149
148
  end
150
149
  end
151
150
 
151
+ begin
152
+ require 'voxpupuli/rubocop/rake'
153
+ rescue LoadError
154
+ # the voxpupuli-rubocop gem is optional
155
+ end
156
+
152
157
  task default: 'spec'
data/facterdb.gemspec CHANGED
@@ -1,6 +1,5 @@
1
- # -*- encoding: utf-8 -*-
2
- $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
3
- require "facterdb/version"
1
+ $LOAD_PATH.unshift File.expand_path('lib', __dir__)
2
+ require 'facterdb/version'
4
3
 
5
4
  Gem::Specification.new do |s|
6
5
  s.name = 'facterdb'
@@ -13,16 +12,17 @@ Gem::Specification.new do |s|
13
12
  s.licenses = 'Apache-2.0'
14
13
 
15
14
  s.files = `git ls-files`.split("\n")
16
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
15
+ s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
18
16
 
19
17
  # we have that configured in our CI file
20
- s.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
18
+ s.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
21
19
 
22
20
  s.add_development_dependency 'coveralls'
23
- s.add_development_dependency 'rake'
24
21
  s.add_development_dependency 'pry'
22
+ s.add_development_dependency 'rake'
25
23
  s.add_development_dependency 'rspec'
24
+
25
+ s.add_development_dependency 'voxpupuli-rubocop', '~> 2.0.0'
26
26
  s.add_runtime_dependency 'facter', '< 5.0.0'
27
27
  s.add_runtime_dependency 'jgrep'
28
28
  end