beaker-hostgenerator 1.10.0 → 1.11.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 +13 -0
- data/Gemfile +1 -1
- data/lib/beaker-hostgenerator/data.rb +87 -141
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67d2f85f798121ef64291a2efa7e2cd6c64382ba43bdf327a5465678105d52dc
|
4
|
+
data.tar.gz: 14c4e29e924b22eb16c06191b4e6cfc6aeb1d8a6626361200a992eaaea444245
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a504a948dd4f3ea14c65c6de1ae0a0d04753fb9c0a0c69329b910170e5d2bbb31cb0285d0f5d27ae6a480a2ac7832923cda2aa8727141cc94fd44ade4030424f
|
7
|
+
data.tar.gz: ba570977c61cbb8040a1881c217fd05672f36ce249f8f1e494db903afffb1dd1fec0c0850f9b2672365ac835873d8bec8f8243fdb4f533c126c23fc3db3161ef
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,19 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [1.11.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.11.0) (2022-01-27)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.10.0...1.11.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Use CentOS Stream 8 instead of CentOS Linux 8 [\#240](https://github.com/voxpupuli/beaker-hostgenerator/pull/240) ([ekohl](https://github.com/ekohl))
|
12
|
+
- Add CentOS 9 support [\#225](https://github.com/voxpupuli/beaker-hostgenerator/pull/225) ([ekohl](https://github.com/ekohl))
|
13
|
+
|
14
|
+
**Merged pull requests:**
|
15
|
+
|
16
|
+
- Drop redundant attributes from generated data [\#239](https://github.com/voxpupuli/beaker-hostgenerator/pull/239) ([ekohl](https://github.com/ekohl))
|
17
|
+
|
5
18
|
## [1.10.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.10.0) (2021-12-10)
|
6
19
|
|
7
20
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.9.0...1.10.0)
|
data/Gemfile
CHANGED
@@ -68,7 +68,7 @@ module BeakerHostGenerator
|
|
68
68
|
'pe_ver' => options[:pe_ver] || pe_version,
|
69
69
|
'pe_upgrade_dir' => options[:pe_upgrade_dir] || pe_dir(pe_upgrade_version),
|
70
70
|
'pe_upgrade_ver' => options[:pe_upgrade_ver] || pe_upgrade_version,
|
71
|
-
}
|
71
|
+
}.reject { |key, value| value.nil? }
|
72
72
|
end
|
73
73
|
|
74
74
|
# This is where all the information for all platforms lives, irrespective
|
@@ -152,8 +152,7 @@ module BeakerHostGenerator
|
|
152
152
|
result.merge!({
|
153
153
|
'aix53-POWER' => {
|
154
154
|
:general => {
|
155
|
-
'platform'
|
156
|
-
'packaging_platform' => 'aix-5.3-power'
|
155
|
+
'platform' => 'aix-5.3-power'
|
157
156
|
},
|
158
157
|
:abs => {
|
159
158
|
'template' => 'aix-5.3-power'
|
@@ -161,8 +160,7 @@ module BeakerHostGenerator
|
|
161
160
|
},
|
162
161
|
'aix61-POWER' => {
|
163
162
|
:general => {
|
164
|
-
'platform'
|
165
|
-
'packaging_platform' => 'aix-6.1-power'
|
163
|
+
'platform' => 'aix-6.1-power'
|
166
164
|
},
|
167
165
|
:abs => {
|
168
166
|
'template' => 'aix-6.1-power'
|
@@ -170,8 +168,7 @@ module BeakerHostGenerator
|
|
170
168
|
},
|
171
169
|
'aix71-POWER' => {
|
172
170
|
:general => {
|
173
|
-
'platform'
|
174
|
-
'packaging_platform' => 'aix-7.1-power'
|
171
|
+
'platform' => 'aix-7.1-power'
|
175
172
|
},
|
176
173
|
:abs => {
|
177
174
|
'template' => 'aix-7.1-power'
|
@@ -199,8 +196,7 @@ module BeakerHostGenerator
|
|
199
196
|
},
|
200
197
|
'amazon6-64' => {
|
201
198
|
:general => {
|
202
|
-
'platform'
|
203
|
-
'packaging_platform' => 'el-6-x86_64'
|
199
|
+
'platform' => 'el-6-x86_64'
|
204
200
|
},
|
205
201
|
:abs => {
|
206
202
|
'template' => 'amazon-6-x86_64'
|
@@ -208,8 +204,7 @@ module BeakerHostGenerator
|
|
208
204
|
},
|
209
205
|
'amazon7-64' => {
|
210
206
|
:general => {
|
211
|
-
'platform'
|
212
|
-
'packaging_platform' => 'el-7-x86_64'
|
207
|
+
'platform' => 'el-7-x86_64'
|
213
208
|
},
|
214
209
|
:abs => {
|
215
210
|
'template' => 'amazon-7-x86_64'
|
@@ -217,8 +212,7 @@ module BeakerHostGenerator
|
|
217
212
|
},
|
218
213
|
'amazon7-ARM64' => {
|
219
214
|
:general => {
|
220
|
-
'platform'
|
221
|
-
'packaging_platform' => 'el-7-aarch64'
|
215
|
+
'platform' => 'el-7-aarch64'
|
222
216
|
},
|
223
217
|
:abs => {
|
224
218
|
'template' => 'amazon-7-arm64'
|
@@ -237,8 +231,7 @@ module BeakerHostGenerator
|
|
237
231
|
},
|
238
232
|
'arista4-32' => {
|
239
233
|
:general => {
|
240
|
-
'platform'
|
241
|
-
'packaging_platform' => 'eos-4-i386'
|
234
|
+
'platform' => 'eos-4-i386'
|
242
235
|
},
|
243
236
|
:vmpooler => {
|
244
237
|
'template' => 'arista-4-i386'
|
@@ -256,14 +249,12 @@ module BeakerHostGenerator
|
|
256
249
|
},
|
257
250
|
'centos5-32' => {
|
258
251
|
:general => {
|
259
|
-
'platform'
|
260
|
-
'packaging_platform' => 'el-5-i386'
|
252
|
+
'platform' => 'el-5-i386'
|
261
253
|
}
|
262
254
|
},
|
263
255
|
'centos5-64' => {
|
264
256
|
:general => {
|
265
|
-
'platform'
|
266
|
-
'packaging_platform' => 'el-5-x86_64'
|
257
|
+
'platform' => 'el-5-x86_64'
|
267
258
|
},
|
268
259
|
:docker => {
|
269
260
|
'docker_image_commands' => [
|
@@ -275,14 +266,12 @@ module BeakerHostGenerator
|
|
275
266
|
},
|
276
267
|
'centos6-32' => {
|
277
268
|
:general => {
|
278
|
-
'platform'
|
279
|
-
'packaging_platform' => 'el-6-i386'
|
269
|
+
'platform' => 'el-6-i386'
|
280
270
|
}
|
281
271
|
},
|
282
272
|
'centos6-64' => {
|
283
273
|
:general => {
|
284
|
-
'platform'
|
285
|
-
'packaging_platform' => 'el-6-x86_64'
|
274
|
+
'platform' => 'el-6-x86_64'
|
286
275
|
},
|
287
276
|
:docker => {
|
288
277
|
'docker_image_commands' => [
|
@@ -295,8 +284,7 @@ module BeakerHostGenerator
|
|
295
284
|
},
|
296
285
|
'centos7-64' => {
|
297
286
|
:general => {
|
298
|
-
'platform'
|
299
|
-
'packaging_platform' => 'el-7-x86_64'
|
287
|
+
'platform' => 'el-7-x86_64'
|
300
288
|
},
|
301
289
|
:docker => {
|
302
290
|
'docker_image_commands' => [
|
@@ -307,16 +295,31 @@ module BeakerHostGenerator
|
|
307
295
|
},
|
308
296
|
'centos8-64' => {
|
309
297
|
:general => {
|
310
|
-
'platform'
|
311
|
-
|
298
|
+
'platform' => 'el-8-x86_64'
|
299
|
+
},
|
300
|
+
:vagrant => {
|
301
|
+
'box' => 'centos/stream8',
|
312
302
|
},
|
313
303
|
:docker => {
|
304
|
+
'image' => 'quay.io/centos/centos:stream8',
|
314
305
|
'docker_image_commands' => [
|
315
306
|
'cp /bin/true /sbin/agetty',
|
316
307
|
'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
|
317
308
|
]
|
318
309
|
}
|
319
310
|
},
|
311
|
+
'centos9-64' => {
|
312
|
+
:general => {
|
313
|
+
'platform' => 'el-9-x86_64'
|
314
|
+
},
|
315
|
+
:docker => {
|
316
|
+
'image' => 'quay.io/centos/centos:stream9',
|
317
|
+
'docker_image_commands' => [
|
318
|
+
'cp /bin/true /sbin/agetty',
|
319
|
+
'dnf install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
|
320
|
+
]
|
321
|
+
}
|
322
|
+
},
|
320
323
|
# Deprecated
|
321
324
|
'cisconx-64' => {
|
322
325
|
:general => {
|
@@ -535,8 +538,7 @@ module BeakerHostGenerator
|
|
535
538
|
},
|
536
539
|
'debian7-32' => {
|
537
540
|
:general => {
|
538
|
-
'platform'
|
539
|
-
'packaging_platform' => 'debian-7-i386'
|
541
|
+
'platform' => 'debian-7-i386'
|
540
542
|
},
|
541
543
|
:vmpooler => {
|
542
544
|
'template' => 'debian-7-i386'
|
@@ -544,8 +546,7 @@ module BeakerHostGenerator
|
|
544
546
|
},
|
545
547
|
'debian7-64' => {
|
546
548
|
:general => {
|
547
|
-
'platform'
|
548
|
-
'packaging_platform' => 'debian-7-amd64'
|
549
|
+
'platform' => 'debian-7-amd64'
|
549
550
|
},
|
550
551
|
:docker => {
|
551
552
|
'docker_image_commands' => [
|
@@ -562,8 +563,7 @@ module BeakerHostGenerator
|
|
562
563
|
},
|
563
564
|
'debian8-32' => {
|
564
565
|
:general => {
|
565
|
-
'platform'
|
566
|
-
'packaging_platform' => 'debian-8-i386'
|
566
|
+
'platform' => 'debian-8-i386'
|
567
567
|
},
|
568
568
|
:vmpooler => {
|
569
569
|
'template' => 'debian-8-i386'
|
@@ -571,8 +571,7 @@ module BeakerHostGenerator
|
|
571
571
|
},
|
572
572
|
'debian8-64' => {
|
573
573
|
:general => {
|
574
|
-
'platform'
|
575
|
-
'packaging_platform' => 'debian-8-amd64'
|
574
|
+
'platform' => 'debian-8-amd64'
|
576
575
|
},
|
577
576
|
:docker => {
|
578
577
|
'docker_image_commands' => [
|
@@ -590,8 +589,7 @@ module BeakerHostGenerator
|
|
590
589
|
},
|
591
590
|
'debian9-32' => {
|
592
591
|
:general => {
|
593
|
-
'platform'
|
594
|
-
'packaging_platform' => 'debian-9-i386'
|
592
|
+
'platform' => 'debian-9-i386'
|
595
593
|
},
|
596
594
|
:vmpooler => {
|
597
595
|
'template' => 'debian-9-i386'
|
@@ -606,8 +604,7 @@ module BeakerHostGenerator
|
|
606
604
|
},
|
607
605
|
'debian9-64' => {
|
608
606
|
:general => {
|
609
|
-
'platform'
|
610
|
-
'packaging_platform' => 'debian-9-amd64'
|
607
|
+
'platform' => 'debian-9-amd64'
|
611
608
|
},
|
612
609
|
:docker => {
|
613
610
|
'docker_image_commands' => [
|
@@ -625,8 +622,7 @@ module BeakerHostGenerator
|
|
625
622
|
},
|
626
623
|
'debian10-64' => {
|
627
624
|
:general => {
|
628
|
-
'platform'
|
629
|
-
'packaging_platform' => 'debian-10-amd64'
|
625
|
+
'platform' => 'debian-10-amd64'
|
630
626
|
},
|
631
627
|
:docker => {
|
632
628
|
'docker_image_commands' => [
|
@@ -644,8 +640,7 @@ module BeakerHostGenerator
|
|
644
640
|
},
|
645
641
|
'debian10-32' => {
|
646
642
|
:general => {
|
647
|
-
'platform'
|
648
|
-
'packaging_platform' => 'debian-10-i386'
|
643
|
+
'platform' => 'debian-10-i386'
|
649
644
|
},
|
650
645
|
:docker => {
|
651
646
|
'docker_image_commands' => [
|
@@ -660,8 +655,7 @@ module BeakerHostGenerator
|
|
660
655
|
},
|
661
656
|
'debian11-64' => {
|
662
657
|
:general => {
|
663
|
-
'platform'
|
664
|
-
'packaging_platform' => 'debian-11-amd64'
|
658
|
+
'platform' => 'debian-11-amd64'
|
665
659
|
},
|
666
660
|
:docker => {
|
667
661
|
'docker_image_commands' => [
|
@@ -788,8 +782,7 @@ module BeakerHostGenerator
|
|
788
782
|
},
|
789
783
|
'oracle5-32' => {
|
790
784
|
:general => {
|
791
|
-
'platform'
|
792
|
-
'packaging_platform' => 'el-5-i386'
|
785
|
+
'platform' => 'el-5-i386'
|
793
786
|
},
|
794
787
|
:vmpooler => {
|
795
788
|
'template' => 'oracle-5-i386'
|
@@ -797,8 +790,7 @@ module BeakerHostGenerator
|
|
797
790
|
},
|
798
791
|
'oracle5-64' => {
|
799
792
|
:general => {
|
800
|
-
'platform'
|
801
|
-
'packaging_platform' => 'el-5-x86_64'
|
793
|
+
'platform' => 'el-5-x86_64'
|
802
794
|
},
|
803
795
|
:vmpooler => {
|
804
796
|
'template' => 'oracle-5-x86_64'
|
@@ -806,8 +798,7 @@ module BeakerHostGenerator
|
|
806
798
|
},
|
807
799
|
'oracle6-32' => {
|
808
800
|
:general => {
|
809
|
-
'platform'
|
810
|
-
'packaging_platform' => 'el-6-i386'
|
801
|
+
'platform' => 'el-6-i386'
|
811
802
|
},
|
812
803
|
:vmpooler => {
|
813
804
|
'template' => 'oracle-6-i386'
|
@@ -815,8 +806,7 @@ module BeakerHostGenerator
|
|
815
806
|
},
|
816
807
|
'oracle6-64' => {
|
817
808
|
:general => {
|
818
|
-
'platform'
|
819
|
-
'packaging_platform' => 'el-6-x86_64'
|
809
|
+
'platform' => 'el-6-x86_64'
|
820
810
|
},
|
821
811
|
:vmpooler => {
|
822
812
|
'template' => 'oracle-6-x86_64'
|
@@ -824,8 +814,7 @@ module BeakerHostGenerator
|
|
824
814
|
},
|
825
815
|
'oracle7-64' => {
|
826
816
|
:general => {
|
827
|
-
'platform'
|
828
|
-
'packaging_platform' => 'el-7-x86_64'
|
817
|
+
'platform' => 'el-7-x86_64'
|
829
818
|
},
|
830
819
|
:vmpooler => {
|
831
820
|
'template' => 'oracle-7-x86_64'
|
@@ -841,8 +830,7 @@ module BeakerHostGenerator
|
|
841
830
|
},
|
842
831
|
'osx1010-64' => {
|
843
832
|
:general => {
|
844
|
-
'platform'
|
845
|
-
'packaging_platform' => 'osx-10.10-x86_64'
|
833
|
+
'platform' => 'osx-10.10-x86_64'
|
846
834
|
},
|
847
835
|
:vmpooler => {
|
848
836
|
'template' => 'osx-1010-x86_64'
|
@@ -850,8 +838,7 @@ module BeakerHostGenerator
|
|
850
838
|
},
|
851
839
|
'osx1011-64' => {
|
852
840
|
:general => {
|
853
|
-
'platform'
|
854
|
-
'packaging_platform' => 'osx-10.11-x86_64'
|
841
|
+
'platform' => 'osx-10.11-x86_64'
|
855
842
|
},
|
856
843
|
:vmpooler => {
|
857
844
|
'template' => 'osx-1011-x86_64'
|
@@ -859,8 +846,7 @@ module BeakerHostGenerator
|
|
859
846
|
},
|
860
847
|
'osx1012-64' => {
|
861
848
|
:general => {
|
862
|
-
'platform'
|
863
|
-
'packaging_platform' => 'osx-10.12-x86_64'
|
849
|
+
'platform' => 'osx-10.12-x86_64'
|
864
850
|
},
|
865
851
|
:vmpooler => {
|
866
852
|
'template' => 'osx-1012-x86_64'
|
@@ -868,8 +854,7 @@ module BeakerHostGenerator
|
|
868
854
|
},
|
869
855
|
'osx1013-64' => {
|
870
856
|
:general => {
|
871
|
-
'platform'
|
872
|
-
'packaging_platform' => 'osx-10.13-x86_64'
|
857
|
+
'platform' => 'osx-10.13-x86_64'
|
873
858
|
},
|
874
859
|
:vmpooler => {
|
875
860
|
'template' => 'osx-1013-x86_64'
|
@@ -877,8 +862,7 @@ module BeakerHostGenerator
|
|
877
862
|
},
|
878
863
|
'osx1014-64' => {
|
879
864
|
:general => {
|
880
|
-
'platform'
|
881
|
-
'packaging_platform' => 'osx-10.14-x86_64'
|
865
|
+
'platform' => 'osx-10.14-x86_64'
|
882
866
|
},
|
883
867
|
:vmpooler => {
|
884
868
|
'template' => 'osx-1014-x86_64'
|
@@ -886,8 +870,7 @@ module BeakerHostGenerator
|
|
886
870
|
},
|
887
871
|
'osx1015-64' => {
|
888
872
|
:general => {
|
889
|
-
'platform'
|
890
|
-
'packaging_platform' => 'osx-10.15-x86_64'
|
873
|
+
'platform' => 'osx-10.15-x86_64'
|
891
874
|
},
|
892
875
|
:vmpooler => {
|
893
876
|
'template' => 'osx-1015-x86_64'
|
@@ -895,8 +878,7 @@ module BeakerHostGenerator
|
|
895
878
|
},
|
896
879
|
'osx11-64' => {
|
897
880
|
:general => {
|
898
|
-
'platform'
|
899
|
-
'packaging_platform' => 'osx-11-x86_64'
|
881
|
+
'platform' => 'osx-11-x86_64'
|
900
882
|
},
|
901
883
|
:vmpooler => {
|
902
884
|
'template' => 'macos-112-x86_64'
|
@@ -920,8 +902,7 @@ module BeakerHostGenerator
|
|
920
902
|
},
|
921
903
|
'redhat5-32' => {
|
922
904
|
:general => {
|
923
|
-
'platform'
|
924
|
-
'packaging_platform' => 'el-5-i386'
|
905
|
+
'platform' => 'el-5-i386'
|
925
906
|
},
|
926
907
|
:vmpooler => {
|
927
908
|
'template' => 'redhat-5-i386'
|
@@ -929,8 +910,7 @@ module BeakerHostGenerator
|
|
929
910
|
},
|
930
911
|
'redhat5-64' => {
|
931
912
|
:general => {
|
932
|
-
'platform'
|
933
|
-
'packaging_platform' => 'el-5-x86_64'
|
913
|
+
'platform' => 'el-5-x86_64'
|
934
914
|
},
|
935
915
|
:vmpooler => {
|
936
916
|
'template' => 'redhat-5-x86_64'
|
@@ -938,8 +918,7 @@ module BeakerHostGenerator
|
|
938
918
|
},
|
939
919
|
'redhat6-32' => {
|
940
920
|
:general => {
|
941
|
-
'platform'
|
942
|
-
'packaging_platform' => 'el-6-i386'
|
921
|
+
'platform' => 'el-6-i386',
|
943
922
|
},
|
944
923
|
:vmpooler => {
|
945
924
|
'template' => 'redhat-6-i386'
|
@@ -947,8 +926,7 @@ module BeakerHostGenerator
|
|
947
926
|
},
|
948
927
|
'redhat6-64' => {
|
949
928
|
:general => {
|
950
|
-
'platform'
|
951
|
-
'packaging_platform' => 'el-6-x86_64'
|
929
|
+
'platform' => 'el-6-x86_64'
|
952
930
|
},
|
953
931
|
:vmpooler => {
|
954
932
|
'template' => 'redhat-6-x86_64'
|
@@ -956,14 +934,12 @@ module BeakerHostGenerator
|
|
956
934
|
},
|
957
935
|
'redhat6-S390X' => {
|
958
936
|
:general => {
|
959
|
-
'platform'
|
960
|
-
'packaging_platform' => 'el-6-s390x'
|
937
|
+
'platform' => 'el-6-s390x'
|
961
938
|
},
|
962
939
|
},
|
963
940
|
'redhat7-64' => {
|
964
941
|
:general => {
|
965
|
-
'platform'
|
966
|
-
'packaging_platform' => 'el-7-x86_64'
|
942
|
+
'platform' => 'el-7-x86_64'
|
967
943
|
},
|
968
944
|
:vmpooler => {
|
969
945
|
'template' => 'redhat-7-x86_64'
|
@@ -980,8 +956,7 @@ module BeakerHostGenerator
|
|
980
956
|
},
|
981
957
|
'redhat7-POWER' => {
|
982
958
|
:general => {
|
983
|
-
'platform'
|
984
|
-
'packaging_platform' => 'el-7-ppc64le'
|
959
|
+
'platform' => 'el-7-ppc64le',
|
985
960
|
},
|
986
961
|
:abs => {
|
987
962
|
'template' => 'redhat-7.3-power8'
|
@@ -989,14 +964,12 @@ module BeakerHostGenerator
|
|
989
964
|
},
|
990
965
|
'redhat7-S390X' => {
|
991
966
|
:general => {
|
992
|
-
'platform'
|
993
|
-
'packaging_platform' => 'el-7-s390x'
|
967
|
+
'platform' => 'el-7-s390x'
|
994
968
|
},
|
995
969
|
},
|
996
970
|
'redhat7-AARCH64' => {
|
997
971
|
:general => {
|
998
|
-
'platform'
|
999
|
-
'packaging_platform' => 'el-7-aarch64'
|
972
|
+
'platform' => 'el-7-aarch64'
|
1000
973
|
},
|
1001
974
|
:abs => {
|
1002
975
|
'template' => 'centos-7-arm64'
|
@@ -1007,8 +980,7 @@ module BeakerHostGenerator
|
|
1007
980
|
},
|
1008
981
|
'redhat8-64' => {
|
1009
982
|
:general => {
|
1010
|
-
'platform'
|
1011
|
-
'packaging_platform' => 'el-8-x86_64'
|
983
|
+
'platform' => 'el-8-x86_64'
|
1012
984
|
},
|
1013
985
|
:vmpooler => {
|
1014
986
|
'template' => 'redhat-8-x86_64'
|
@@ -1025,8 +997,7 @@ module BeakerHostGenerator
|
|
1025
997
|
},
|
1026
998
|
'redhat8-AARCH64' => {
|
1027
999
|
:general => {
|
1028
|
-
'platform'
|
1029
|
-
'packaging_platform' => 'el-8-aarch64'
|
1000
|
+
'platform' => 'el-8-aarch64'
|
1030
1001
|
},
|
1031
1002
|
:abs => {
|
1032
1003
|
'template' => 'redhat-8-arm64'
|
@@ -1037,8 +1008,7 @@ module BeakerHostGenerator
|
|
1037
1008
|
},
|
1038
1009
|
'redhat8-POWER' => {
|
1039
1010
|
:general => {
|
1040
|
-
'platform'
|
1041
|
-
'packaging_platform' => 'el-8-ppc64le'
|
1011
|
+
'platform' => 'el-8-ppc64le'
|
1042
1012
|
},
|
1043
1013
|
:abs => {
|
1044
1014
|
'template' => 'redhat-8-power8'
|
@@ -1046,8 +1016,7 @@ module BeakerHostGenerator
|
|
1046
1016
|
},
|
1047
1017
|
'redhat9-64' => {
|
1048
1018
|
:general => {
|
1049
|
-
'platform'
|
1050
|
-
'packaging_platform' => 'el-9-x86_64'
|
1019
|
+
'platform' => 'el-9-x86_64'
|
1051
1020
|
},
|
1052
1021
|
:vmpooler => {
|
1053
1022
|
'template' => 'redhat-9-x86_64'
|
@@ -1066,8 +1035,7 @@ module BeakerHostGenerator
|
|
1066
1035
|
},
|
1067
1036
|
'scientific5-32' => {
|
1068
1037
|
:general => {
|
1069
|
-
'platform'
|
1070
|
-
'packaging_platform' => 'el-5-i386'
|
1038
|
+
'platform' => 'el-5-i386'
|
1071
1039
|
},
|
1072
1040
|
:vmpooler => {
|
1073
1041
|
'template' => 'scientific-5-i386'
|
@@ -1075,8 +1043,7 @@ module BeakerHostGenerator
|
|
1075
1043
|
},
|
1076
1044
|
'scientific5-64' => {
|
1077
1045
|
:general => {
|
1078
|
-
'platform'
|
1079
|
-
'packaging_platform' => 'el-5-x86_64'
|
1046
|
+
'platform' => 'el-5-x86_64'
|
1080
1047
|
},
|
1081
1048
|
:vmpooler => {
|
1082
1049
|
'template' => 'scientific-5-x86_64'
|
@@ -1084,8 +1051,7 @@ module BeakerHostGenerator
|
|
1084
1051
|
},
|
1085
1052
|
'scientific6-32' => {
|
1086
1053
|
:general => {
|
1087
|
-
'platform'
|
1088
|
-
'packaging_platform' => 'el-6-i386'
|
1054
|
+
'platform' => 'el-6-i386'
|
1089
1055
|
},
|
1090
1056
|
:vmpooler => {
|
1091
1057
|
'template' => 'scientific-6-i386'
|
@@ -1093,8 +1059,7 @@ module BeakerHostGenerator
|
|
1093
1059
|
},
|
1094
1060
|
'scientific6-64' => {
|
1095
1061
|
:general => {
|
1096
|
-
'platform'
|
1097
|
-
'packaging_platform' => 'el-6-x86_64'
|
1062
|
+
'platform' => 'el-6-x86_64'
|
1098
1063
|
},
|
1099
1064
|
:vmpooler => {
|
1100
1065
|
'template' => 'scientific-6-x86_64'
|
@@ -1102,8 +1067,7 @@ module BeakerHostGenerator
|
|
1102
1067
|
},
|
1103
1068
|
'scientific7-64' => {
|
1104
1069
|
:general => {
|
1105
|
-
'platform'
|
1106
|
-
'packaging_platform' => 'el-7-x86_64'
|
1070
|
+
'platform' => 'el-7-x86_64'
|
1107
1071
|
},
|
1108
1072
|
:vmpooler => {
|
1109
1073
|
'template' => 'scientific-7-x86_64'
|
@@ -1127,8 +1091,7 @@ module BeakerHostGenerator
|
|
1127
1091
|
},
|
1128
1092
|
'sles11-32' => {
|
1129
1093
|
:general => {
|
1130
|
-
'platform'
|
1131
|
-
'packaging_platform' => 'sles-11-i386'
|
1094
|
+
'platform' => 'sles-11-i386'
|
1132
1095
|
},
|
1133
1096
|
:vmpooler => {
|
1134
1097
|
'template' => 'sles-11-i386'
|
@@ -1136,8 +1099,7 @@ module BeakerHostGenerator
|
|
1136
1099
|
},
|
1137
1100
|
'sles11-64' => {
|
1138
1101
|
:general => {
|
1139
|
-
'platform'
|
1140
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1102
|
+
'platform' => 'sles-11-x86_64'
|
1141
1103
|
},
|
1142
1104
|
:vmpooler => {
|
1143
1105
|
'template' => 'sles-11-x86_64'
|
@@ -1145,14 +1107,12 @@ module BeakerHostGenerator
|
|
1145
1107
|
},
|
1146
1108
|
'sles11-S390X' => {
|
1147
1109
|
:general => {
|
1148
|
-
'platform'
|
1149
|
-
'packaging_platform' => 'sles-11-s390x'
|
1110
|
+
'platform' => 'sles-11-s390x'
|
1150
1111
|
},
|
1151
1112
|
},
|
1152
1113
|
'sles12-64' => {
|
1153
1114
|
:general => {
|
1154
|
-
'platform'
|
1155
|
-
'packaging_platform' => 'sles-12-x86_64'
|
1115
|
+
'platform' => 'sles-12-x86_64'
|
1156
1116
|
},
|
1157
1117
|
:vmpooler => {
|
1158
1118
|
'template' => 'sles-12-x86_64'
|
@@ -1160,14 +1120,12 @@ module BeakerHostGenerator
|
|
1160
1120
|
},
|
1161
1121
|
'sles12-S390X' => {
|
1162
1122
|
:general => {
|
1163
|
-
'platform'
|
1164
|
-
'packaging_platform' => 'sles-12-s390x'
|
1123
|
+
'platform' => 'sles-12-s390x'
|
1165
1124
|
}
|
1166
1125
|
},
|
1167
1126
|
'sles12-POWER' => {
|
1168
1127
|
:general => {
|
1169
|
-
'platform'
|
1170
|
-
'packaging_platform' => 'sles-12-ppc64le'
|
1128
|
+
'platform' => 'sles-12-ppc64le'
|
1171
1129
|
},
|
1172
1130
|
:abs => {
|
1173
1131
|
'template' => 'sles-12-power8'
|
@@ -1175,8 +1133,7 @@ module BeakerHostGenerator
|
|
1175
1133
|
},
|
1176
1134
|
'sles15-64' => {
|
1177
1135
|
:general => {
|
1178
|
-
'platform'
|
1179
|
-
'packaging_platform' => 'sles-15-x86_64'
|
1136
|
+
'platform' => 'sles-15-x86_64'
|
1180
1137
|
},
|
1181
1138
|
:vmpooler => {
|
1182
1139
|
'template' => 'sles-15-x86_64'
|
@@ -1184,8 +1141,7 @@ module BeakerHostGenerator
|
|
1184
1141
|
},
|
1185
1142
|
'solaris10-32' => {
|
1186
1143
|
:general => {
|
1187
|
-
'platform'
|
1188
|
-
'packaging_platform' => 'solaris-10-i386'
|
1144
|
+
'platform' => 'solaris-10-i386'
|
1189
1145
|
},
|
1190
1146
|
:vmpooler => {
|
1191
1147
|
'template' => 'solaris-10-x86_64'
|
@@ -1193,8 +1149,7 @@ module BeakerHostGenerator
|
|
1193
1149
|
},
|
1194
1150
|
'solaris10-64' => {
|
1195
1151
|
:general => {
|
1196
|
-
'platform'
|
1197
|
-
'packaging_platform' => 'solaris-10-i386'
|
1152
|
+
'platform' => 'solaris-10-i386'
|
1198
1153
|
},
|
1199
1154
|
:vmpooler => {
|
1200
1155
|
'template' => 'solaris-10-x86_64'
|
@@ -1202,8 +1157,7 @@ module BeakerHostGenerator
|
|
1202
1157
|
},
|
1203
1158
|
'solaris10-SPARC' => {
|
1204
1159
|
:general => {
|
1205
|
-
'platform'
|
1206
|
-
'packaging_platform' => 'solaris-10-sparc'
|
1160
|
+
'platform' => 'solaris-10-sparc'
|
1207
1161
|
},
|
1208
1162
|
:abs => {
|
1209
1163
|
'template' => 'solaris-10-sparc'
|
@@ -1211,8 +1165,7 @@ module BeakerHostGenerator
|
|
1211
1165
|
},
|
1212
1166
|
'solaris11-32' => {
|
1213
1167
|
:general => {
|
1214
|
-
'platform'
|
1215
|
-
'packaging_platform' => 'solaris-11-i386'
|
1168
|
+
'platform' => 'solaris-11-i386'
|
1216
1169
|
},
|
1217
1170
|
:vmpooler => {
|
1218
1171
|
'template' => 'solaris-11-x86_64'
|
@@ -1220,8 +1173,7 @@ module BeakerHostGenerator
|
|
1220
1173
|
},
|
1221
1174
|
'solaris11-64' => {
|
1222
1175
|
:general => {
|
1223
|
-
'platform'
|
1224
|
-
'packaging_platform' => 'solaris-11-i386'
|
1176
|
+
'platform' => 'solaris-11-i386'
|
1225
1177
|
},
|
1226
1178
|
:vmpooler => {
|
1227
1179
|
'template' => 'solaris-11-x86_64'
|
@@ -1229,8 +1181,7 @@ module BeakerHostGenerator
|
|
1229
1181
|
},
|
1230
1182
|
'solaris11-SPARC' => {
|
1231
1183
|
:general => {
|
1232
|
-
'platform'
|
1233
|
-
'packaging_platform' => 'solaris-11-sparc'
|
1184
|
+
'platform' => 'solaris-11-sparc'
|
1234
1185
|
},
|
1235
1186
|
:abs => {
|
1236
1187
|
'template' => 'solaris-11-sparc'
|
@@ -1274,8 +1225,7 @@ module BeakerHostGenerator
|
|
1274
1225
|
},
|
1275
1226
|
'vro6-64' => {
|
1276
1227
|
:general => {
|
1277
|
-
'platform'
|
1278
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1228
|
+
'platform' => 'sles-11-x86_64'
|
1279
1229
|
},
|
1280
1230
|
:vmpooler => {
|
1281
1231
|
'template' => 'vro-6-x86_64'
|
@@ -1283,8 +1233,7 @@ module BeakerHostGenerator
|
|
1283
1233
|
},
|
1284
1234
|
'vro7-64' => {
|
1285
1235
|
:general => {
|
1286
|
-
'platform'
|
1287
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1236
|
+
'platform' => 'sles-11-x86_64'
|
1288
1237
|
},
|
1289
1238
|
:vmpooler => {
|
1290
1239
|
'template' => 'vro-7-x86_64'
|
@@ -1292,8 +1241,7 @@ module BeakerHostGenerator
|
|
1292
1241
|
},
|
1293
1242
|
'vro71-64' => {
|
1294
1243
|
:general => {
|
1295
|
-
'platform'
|
1296
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1244
|
+
'platform' => 'sles-11-x86_64'
|
1297
1245
|
},
|
1298
1246
|
:vmpooler => {
|
1299
1247
|
'template' => 'vro-71-x86_64'
|
@@ -1301,8 +1249,7 @@ module BeakerHostGenerator
|
|
1301
1249
|
},
|
1302
1250
|
'vro73-64' => {
|
1303
1251
|
:general => {
|
1304
|
-
'platform'
|
1305
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1252
|
+
'platform' => 'sles-11-x86_64'
|
1306
1253
|
},
|
1307
1254
|
:vmpooler => {
|
1308
1255
|
'template' => 'vro-73-x86_64'
|
@@ -1310,8 +1257,7 @@ module BeakerHostGenerator
|
|
1310
1257
|
},
|
1311
1258
|
'vro74-64' => {
|
1312
1259
|
:general => {
|
1313
|
-
'platform'
|
1314
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1260
|
+
'platform' => 'sles-11-x86_64'
|
1315
1261
|
},
|
1316
1262
|
:vmpooler => {
|
1317
1263
|
'template' => 'vro-74-x86_64'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-hostgenerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Branan Purvine-Riley
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-01-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|