beaker-hostgenerator 1.9.0 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -0
- data/CHANGELOG.md +39 -1
- data/Gemfile +1 -1
- data/lib/beaker-hostgenerator/data.rb +108 -142
- 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: f3412c7ddfc1b4eb77fa333200a084eb5ac5aaffaff9078a0cb8674b5e2e0386
|
4
|
+
data.tar.gz: 82160b7963d55fe6b2fde9a604f6209ce5a15169cdd81730362a716ba737b02c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1e6315bb0c4a1a0b4dd82220c05a76eb371e85f686942d91f9db7123d5e608b0e8f16f708458709930cbec2d88fe3c7648eef05a4194ecd3d0a042c0ffc27e7
|
7
|
+
data.tar.gz: 96496f873979a4661d6cfdf4eb8fd7969791ec0a2b957a8a353200ba5864ccabe4efc79d58e66b27a70f71116a19ecda302a2cd84640c428cf17654d24607b43
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,45 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
## [1.
|
5
|
+
## [1.12.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.12.0) (2022-02-21)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.11.1...1.12.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- \(IMAGES-1334\) Add support for macOS 12 [\#245](https://github.com/voxpupuli/beaker-hostgenerator/pull/245) ([AriaXLi](https://github.com/AriaXLi))
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- Add Ruby 3.1 to CI matrix [\#246](https://github.com/voxpupuli/beaker-hostgenerator/pull/246) ([bastelfreak](https://github.com/bastelfreak))
|
16
|
+
|
17
|
+
## [1.11.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.11.1) (2022-02-01)
|
18
|
+
|
19
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.11.0...1.11.1)
|
20
|
+
|
21
|
+
**Fixed bugs:**
|
22
|
+
|
23
|
+
- Install hostname on CentOS 8 Stream in docker [\#242](https://github.com/voxpupuli/beaker-hostgenerator/pull/242) ([ekohl](https://github.com/ekohl))
|
24
|
+
|
25
|
+
## [1.11.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.11.0) (2022-01-27)
|
26
|
+
|
27
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.10.0...1.11.0)
|
28
|
+
|
29
|
+
**Implemented enhancements:**
|
30
|
+
|
31
|
+
- Use CentOS Stream 8 instead of CentOS Linux 8 [\#240](https://github.com/voxpupuli/beaker-hostgenerator/pull/240) ([ekohl](https://github.com/ekohl))
|
32
|
+
- Drop redundant attributes from generated data [\#239](https://github.com/voxpupuli/beaker-hostgenerator/pull/239) ([ekohl](https://github.com/ekohl))
|
33
|
+
- Add CentOS 9 support [\#225](https://github.com/voxpupuli/beaker-hostgenerator/pull/225) ([ekohl](https://github.com/ekohl))
|
34
|
+
|
35
|
+
## [1.10.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.10.0) (2021-12-10)
|
36
|
+
|
37
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.9.0...1.10.0)
|
38
|
+
|
39
|
+
**Implemented enhancements:**
|
40
|
+
|
41
|
+
- Add Arch Linux support [\#191](https://github.com/voxpupuli/beaker-hostgenerator/pull/191) ([ekohl](https://github.com/ekohl))
|
42
|
+
|
43
|
+
## [1.9.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.9.0) (2021-12-08)
|
6
44
|
|
7
45
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.8.0...1.9.0)
|
8
46
|
|
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,17 +212,26 @@ 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'
|
225
219
|
}
|
226
220
|
},
|
221
|
+
'archlinuxrolling-64' => {
|
222
|
+
:general => {
|
223
|
+
'platform' => 'archlinux-rolling-x64',
|
224
|
+
},
|
225
|
+
:vagrant => {
|
226
|
+
'box' => 'archlinux/archlinux',
|
227
|
+
},
|
228
|
+
:docker => {
|
229
|
+
'image' => 'archlinux/archlinux',
|
230
|
+
}
|
231
|
+
},
|
227
232
|
'arista4-32' => {
|
228
233
|
:general => {
|
229
|
-
'platform'
|
230
|
-
'packaging_platform' => 'eos-4-i386'
|
234
|
+
'platform' => 'eos-4-i386'
|
231
235
|
},
|
232
236
|
:vmpooler => {
|
233
237
|
'template' => 'arista-4-i386'
|
@@ -245,14 +249,12 @@ module BeakerHostGenerator
|
|
245
249
|
},
|
246
250
|
'centos5-32' => {
|
247
251
|
:general => {
|
248
|
-
'platform'
|
249
|
-
'packaging_platform' => 'el-5-i386'
|
252
|
+
'platform' => 'el-5-i386'
|
250
253
|
}
|
251
254
|
},
|
252
255
|
'centos5-64' => {
|
253
256
|
:general => {
|
254
|
-
'platform'
|
255
|
-
'packaging_platform' => 'el-5-x86_64'
|
257
|
+
'platform' => 'el-5-x86_64'
|
256
258
|
},
|
257
259
|
:docker => {
|
258
260
|
'docker_image_commands' => [
|
@@ -264,14 +266,12 @@ module BeakerHostGenerator
|
|
264
266
|
},
|
265
267
|
'centos6-32' => {
|
266
268
|
:general => {
|
267
|
-
'platform'
|
268
|
-
'packaging_platform' => 'el-6-i386'
|
269
|
+
'platform' => 'el-6-i386'
|
269
270
|
}
|
270
271
|
},
|
271
272
|
'centos6-64' => {
|
272
273
|
:general => {
|
273
|
-
'platform'
|
274
|
-
'packaging_platform' => 'el-6-x86_64'
|
274
|
+
'platform' => 'el-6-x86_64'
|
275
275
|
},
|
276
276
|
:docker => {
|
277
277
|
'docker_image_commands' => [
|
@@ -284,8 +284,7 @@ module BeakerHostGenerator
|
|
284
284
|
},
|
285
285
|
'centos7-64' => {
|
286
286
|
:general => {
|
287
|
-
'platform'
|
288
|
-
'packaging_platform' => 'el-7-x86_64'
|
287
|
+
'platform' => 'el-7-x86_64'
|
289
288
|
},
|
290
289
|
:docker => {
|
291
290
|
'docker_image_commands' => [
|
@@ -296,13 +295,28 @@ module BeakerHostGenerator
|
|
296
295
|
},
|
297
296
|
'centos8-64' => {
|
298
297
|
:general => {
|
299
|
-
'platform'
|
300
|
-
|
298
|
+
'platform' => 'el-8-x86_64'
|
299
|
+
},
|
300
|
+
:vagrant => {
|
301
|
+
'box' => 'centos/stream8',
|
301
302
|
},
|
302
303
|
:docker => {
|
304
|
+
'image' => 'quay.io/centos/centos:stream8',
|
303
305
|
'docker_image_commands' => [
|
304
306
|
'cp /bin/true /sbin/agetty',
|
305
|
-
'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
|
307
|
+
'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en hostname'
|
308
|
+
]
|
309
|
+
}
|
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'
|
306
320
|
]
|
307
321
|
}
|
308
322
|
},
|
@@ -524,8 +538,7 @@ module BeakerHostGenerator
|
|
524
538
|
},
|
525
539
|
'debian7-32' => {
|
526
540
|
:general => {
|
527
|
-
'platform'
|
528
|
-
'packaging_platform' => 'debian-7-i386'
|
541
|
+
'platform' => 'debian-7-i386'
|
529
542
|
},
|
530
543
|
:vmpooler => {
|
531
544
|
'template' => 'debian-7-i386'
|
@@ -533,8 +546,7 @@ module BeakerHostGenerator
|
|
533
546
|
},
|
534
547
|
'debian7-64' => {
|
535
548
|
:general => {
|
536
|
-
'platform'
|
537
|
-
'packaging_platform' => 'debian-7-amd64'
|
549
|
+
'platform' => 'debian-7-amd64'
|
538
550
|
},
|
539
551
|
:docker => {
|
540
552
|
'docker_image_commands' => [
|
@@ -551,8 +563,7 @@ module BeakerHostGenerator
|
|
551
563
|
},
|
552
564
|
'debian8-32' => {
|
553
565
|
:general => {
|
554
|
-
'platform'
|
555
|
-
'packaging_platform' => 'debian-8-i386'
|
566
|
+
'platform' => 'debian-8-i386'
|
556
567
|
},
|
557
568
|
:vmpooler => {
|
558
569
|
'template' => 'debian-8-i386'
|
@@ -560,8 +571,7 @@ module BeakerHostGenerator
|
|
560
571
|
},
|
561
572
|
'debian8-64' => {
|
562
573
|
:general => {
|
563
|
-
'platform'
|
564
|
-
'packaging_platform' => 'debian-8-amd64'
|
574
|
+
'platform' => 'debian-8-amd64'
|
565
575
|
},
|
566
576
|
:docker => {
|
567
577
|
'docker_image_commands' => [
|
@@ -579,8 +589,7 @@ module BeakerHostGenerator
|
|
579
589
|
},
|
580
590
|
'debian9-32' => {
|
581
591
|
:general => {
|
582
|
-
'platform'
|
583
|
-
'packaging_platform' => 'debian-9-i386'
|
592
|
+
'platform' => 'debian-9-i386'
|
584
593
|
},
|
585
594
|
:vmpooler => {
|
586
595
|
'template' => 'debian-9-i386'
|
@@ -595,8 +604,7 @@ module BeakerHostGenerator
|
|
595
604
|
},
|
596
605
|
'debian9-64' => {
|
597
606
|
:general => {
|
598
|
-
'platform'
|
599
|
-
'packaging_platform' => 'debian-9-amd64'
|
607
|
+
'platform' => 'debian-9-amd64'
|
600
608
|
},
|
601
609
|
:docker => {
|
602
610
|
'docker_image_commands' => [
|
@@ -614,8 +622,7 @@ module BeakerHostGenerator
|
|
614
622
|
},
|
615
623
|
'debian10-64' => {
|
616
624
|
:general => {
|
617
|
-
'platform'
|
618
|
-
'packaging_platform' => 'debian-10-amd64'
|
625
|
+
'platform' => 'debian-10-amd64'
|
619
626
|
},
|
620
627
|
:docker => {
|
621
628
|
'docker_image_commands' => [
|
@@ -633,8 +640,7 @@ module BeakerHostGenerator
|
|
633
640
|
},
|
634
641
|
'debian10-32' => {
|
635
642
|
:general => {
|
636
|
-
'platform'
|
637
|
-
'packaging_platform' => 'debian-10-i386'
|
643
|
+
'platform' => 'debian-10-i386'
|
638
644
|
},
|
639
645
|
:docker => {
|
640
646
|
'docker_image_commands' => [
|
@@ -649,8 +655,7 @@ module BeakerHostGenerator
|
|
649
655
|
},
|
650
656
|
'debian11-64' => {
|
651
657
|
:general => {
|
652
|
-
'platform'
|
653
|
-
'packaging_platform' => 'debian-11-amd64'
|
658
|
+
'platform' => 'debian-11-amd64'
|
654
659
|
},
|
655
660
|
:docker => {
|
656
661
|
'docker_image_commands' => [
|
@@ -777,8 +782,7 @@ module BeakerHostGenerator
|
|
777
782
|
},
|
778
783
|
'oracle5-32' => {
|
779
784
|
:general => {
|
780
|
-
'platform'
|
781
|
-
'packaging_platform' => 'el-5-i386'
|
785
|
+
'platform' => 'el-5-i386'
|
782
786
|
},
|
783
787
|
:vmpooler => {
|
784
788
|
'template' => 'oracle-5-i386'
|
@@ -786,8 +790,7 @@ module BeakerHostGenerator
|
|
786
790
|
},
|
787
791
|
'oracle5-64' => {
|
788
792
|
:general => {
|
789
|
-
'platform'
|
790
|
-
'packaging_platform' => 'el-5-x86_64'
|
793
|
+
'platform' => 'el-5-x86_64'
|
791
794
|
},
|
792
795
|
:vmpooler => {
|
793
796
|
'template' => 'oracle-5-x86_64'
|
@@ -795,8 +798,7 @@ module BeakerHostGenerator
|
|
795
798
|
},
|
796
799
|
'oracle6-32' => {
|
797
800
|
:general => {
|
798
|
-
'platform'
|
799
|
-
'packaging_platform' => 'el-6-i386'
|
801
|
+
'platform' => 'el-6-i386'
|
800
802
|
},
|
801
803
|
:vmpooler => {
|
802
804
|
'template' => 'oracle-6-i386'
|
@@ -804,8 +806,7 @@ module BeakerHostGenerator
|
|
804
806
|
},
|
805
807
|
'oracle6-64' => {
|
806
808
|
:general => {
|
807
|
-
'platform'
|
808
|
-
'packaging_platform' => 'el-6-x86_64'
|
809
|
+
'platform' => 'el-6-x86_64'
|
809
810
|
},
|
810
811
|
:vmpooler => {
|
811
812
|
'template' => 'oracle-6-x86_64'
|
@@ -813,8 +814,7 @@ module BeakerHostGenerator
|
|
813
814
|
},
|
814
815
|
'oracle7-64' => {
|
815
816
|
:general => {
|
816
|
-
'platform'
|
817
|
-
'packaging_platform' => 'el-7-x86_64'
|
817
|
+
'platform' => 'el-7-x86_64'
|
818
818
|
},
|
819
819
|
:vmpooler => {
|
820
820
|
'template' => 'oracle-7-x86_64'
|
@@ -830,8 +830,7 @@ module BeakerHostGenerator
|
|
830
830
|
},
|
831
831
|
'osx1010-64' => {
|
832
832
|
:general => {
|
833
|
-
'platform'
|
834
|
-
'packaging_platform' => 'osx-10.10-x86_64'
|
833
|
+
'platform' => 'osx-10.10-x86_64'
|
835
834
|
},
|
836
835
|
:vmpooler => {
|
837
836
|
'template' => 'osx-1010-x86_64'
|
@@ -839,8 +838,7 @@ module BeakerHostGenerator
|
|
839
838
|
},
|
840
839
|
'osx1011-64' => {
|
841
840
|
:general => {
|
842
|
-
'platform'
|
843
|
-
'packaging_platform' => 'osx-10.11-x86_64'
|
841
|
+
'platform' => 'osx-10.11-x86_64'
|
844
842
|
},
|
845
843
|
:vmpooler => {
|
846
844
|
'template' => 'osx-1011-x86_64'
|
@@ -848,8 +846,7 @@ module BeakerHostGenerator
|
|
848
846
|
},
|
849
847
|
'osx1012-64' => {
|
850
848
|
:general => {
|
851
|
-
'platform'
|
852
|
-
'packaging_platform' => 'osx-10.12-x86_64'
|
849
|
+
'platform' => 'osx-10.12-x86_64'
|
853
850
|
},
|
854
851
|
:vmpooler => {
|
855
852
|
'template' => 'osx-1012-x86_64'
|
@@ -857,8 +854,7 @@ module BeakerHostGenerator
|
|
857
854
|
},
|
858
855
|
'osx1013-64' => {
|
859
856
|
:general => {
|
860
|
-
'platform'
|
861
|
-
'packaging_platform' => 'osx-10.13-x86_64'
|
857
|
+
'platform' => 'osx-10.13-x86_64'
|
862
858
|
},
|
863
859
|
:vmpooler => {
|
864
860
|
'template' => 'osx-1013-x86_64'
|
@@ -866,8 +862,7 @@ module BeakerHostGenerator
|
|
866
862
|
},
|
867
863
|
'osx1014-64' => {
|
868
864
|
:general => {
|
869
|
-
'platform'
|
870
|
-
'packaging_platform' => 'osx-10.14-x86_64'
|
865
|
+
'platform' => 'osx-10.14-x86_64'
|
871
866
|
},
|
872
867
|
:vmpooler => {
|
873
868
|
'template' => 'osx-1014-x86_64'
|
@@ -875,8 +870,7 @@ module BeakerHostGenerator
|
|
875
870
|
},
|
876
871
|
'osx1015-64' => {
|
877
872
|
:general => {
|
878
|
-
'platform'
|
879
|
-
'packaging_platform' => 'osx-10.15-x86_64'
|
873
|
+
'platform' => 'osx-10.15-x86_64'
|
880
874
|
},
|
881
875
|
:vmpooler => {
|
882
876
|
'template' => 'osx-1015-x86_64'
|
@@ -884,13 +878,20 @@ module BeakerHostGenerator
|
|
884
878
|
},
|
885
879
|
'osx11-64' => {
|
886
880
|
:general => {
|
887
|
-
'platform'
|
888
|
-
'packaging_platform' => 'osx-11-x86_64'
|
881
|
+
'platform' => 'osx-11-x86_64'
|
889
882
|
},
|
890
883
|
:vmpooler => {
|
891
884
|
'template' => 'macos-112-x86_64'
|
892
885
|
}
|
893
886
|
},
|
887
|
+
'osx12-64' => {
|
888
|
+
:general => {
|
889
|
+
'platform' => 'osx-12-x86_64'
|
890
|
+
},
|
891
|
+
:vmpooler => {
|
892
|
+
'template' => 'macos-12-x86_64'
|
893
|
+
}
|
894
|
+
},
|
894
895
|
'redhat4-32' => {
|
895
896
|
:general => {
|
896
897
|
'platform' => 'el-4-i386'
|
@@ -909,8 +910,7 @@ module BeakerHostGenerator
|
|
909
910
|
},
|
910
911
|
'redhat5-32' => {
|
911
912
|
:general => {
|
912
|
-
'platform'
|
913
|
-
'packaging_platform' => 'el-5-i386'
|
913
|
+
'platform' => 'el-5-i386'
|
914
914
|
},
|
915
915
|
:vmpooler => {
|
916
916
|
'template' => 'redhat-5-i386'
|
@@ -918,8 +918,7 @@ module BeakerHostGenerator
|
|
918
918
|
},
|
919
919
|
'redhat5-64' => {
|
920
920
|
:general => {
|
921
|
-
'platform'
|
922
|
-
'packaging_platform' => 'el-5-x86_64'
|
921
|
+
'platform' => 'el-5-x86_64'
|
923
922
|
},
|
924
923
|
:vmpooler => {
|
925
924
|
'template' => 'redhat-5-x86_64'
|
@@ -927,8 +926,7 @@ module BeakerHostGenerator
|
|
927
926
|
},
|
928
927
|
'redhat6-32' => {
|
929
928
|
:general => {
|
930
|
-
'platform'
|
931
|
-
'packaging_platform' => 'el-6-i386'
|
929
|
+
'platform' => 'el-6-i386',
|
932
930
|
},
|
933
931
|
:vmpooler => {
|
934
932
|
'template' => 'redhat-6-i386'
|
@@ -936,8 +934,7 @@ module BeakerHostGenerator
|
|
936
934
|
},
|
937
935
|
'redhat6-64' => {
|
938
936
|
:general => {
|
939
|
-
'platform'
|
940
|
-
'packaging_platform' => 'el-6-x86_64'
|
937
|
+
'platform' => 'el-6-x86_64'
|
941
938
|
},
|
942
939
|
:vmpooler => {
|
943
940
|
'template' => 'redhat-6-x86_64'
|
@@ -945,14 +942,12 @@ module BeakerHostGenerator
|
|
945
942
|
},
|
946
943
|
'redhat6-S390X' => {
|
947
944
|
:general => {
|
948
|
-
'platform'
|
949
|
-
'packaging_platform' => 'el-6-s390x'
|
945
|
+
'platform' => 'el-6-s390x'
|
950
946
|
},
|
951
947
|
},
|
952
948
|
'redhat7-64' => {
|
953
949
|
:general => {
|
954
|
-
'platform'
|
955
|
-
'packaging_platform' => 'el-7-x86_64'
|
950
|
+
'platform' => 'el-7-x86_64'
|
956
951
|
},
|
957
952
|
:vmpooler => {
|
958
953
|
'template' => 'redhat-7-x86_64'
|
@@ -969,8 +964,7 @@ module BeakerHostGenerator
|
|
969
964
|
},
|
970
965
|
'redhat7-POWER' => {
|
971
966
|
:general => {
|
972
|
-
'platform'
|
973
|
-
'packaging_platform' => 'el-7-ppc64le'
|
967
|
+
'platform' => 'el-7-ppc64le',
|
974
968
|
},
|
975
969
|
:abs => {
|
976
970
|
'template' => 'redhat-7.3-power8'
|
@@ -978,14 +972,12 @@ module BeakerHostGenerator
|
|
978
972
|
},
|
979
973
|
'redhat7-S390X' => {
|
980
974
|
:general => {
|
981
|
-
'platform'
|
982
|
-
'packaging_platform' => 'el-7-s390x'
|
975
|
+
'platform' => 'el-7-s390x'
|
983
976
|
},
|
984
977
|
},
|
985
978
|
'redhat7-AARCH64' => {
|
986
979
|
:general => {
|
987
|
-
'platform'
|
988
|
-
'packaging_platform' => 'el-7-aarch64'
|
980
|
+
'platform' => 'el-7-aarch64'
|
989
981
|
},
|
990
982
|
:abs => {
|
991
983
|
'template' => 'centos-7-arm64'
|
@@ -996,8 +988,7 @@ module BeakerHostGenerator
|
|
996
988
|
},
|
997
989
|
'redhat8-64' => {
|
998
990
|
:general => {
|
999
|
-
'platform'
|
1000
|
-
'packaging_platform' => 'el-8-x86_64'
|
991
|
+
'platform' => 'el-8-x86_64'
|
1001
992
|
},
|
1002
993
|
:vmpooler => {
|
1003
994
|
'template' => 'redhat-8-x86_64'
|
@@ -1014,8 +1005,7 @@ module BeakerHostGenerator
|
|
1014
1005
|
},
|
1015
1006
|
'redhat8-AARCH64' => {
|
1016
1007
|
:general => {
|
1017
|
-
'platform'
|
1018
|
-
'packaging_platform' => 'el-8-aarch64'
|
1008
|
+
'platform' => 'el-8-aarch64'
|
1019
1009
|
},
|
1020
1010
|
:abs => {
|
1021
1011
|
'template' => 'redhat-8-arm64'
|
@@ -1026,8 +1016,7 @@ module BeakerHostGenerator
|
|
1026
1016
|
},
|
1027
1017
|
'redhat8-POWER' => {
|
1028
1018
|
:general => {
|
1029
|
-
'platform'
|
1030
|
-
'packaging_platform' => 'el-8-ppc64le'
|
1019
|
+
'platform' => 'el-8-ppc64le'
|
1031
1020
|
},
|
1032
1021
|
:abs => {
|
1033
1022
|
'template' => 'redhat-8-power8'
|
@@ -1035,8 +1024,7 @@ module BeakerHostGenerator
|
|
1035
1024
|
},
|
1036
1025
|
'redhat9-64' => {
|
1037
1026
|
:general => {
|
1038
|
-
'platform'
|
1039
|
-
'packaging_platform' => 'el-9-x86_64'
|
1027
|
+
'platform' => 'el-9-x86_64'
|
1040
1028
|
},
|
1041
1029
|
:vmpooler => {
|
1042
1030
|
'template' => 'redhat-9-x86_64'
|
@@ -1055,8 +1043,7 @@ module BeakerHostGenerator
|
|
1055
1043
|
},
|
1056
1044
|
'scientific5-32' => {
|
1057
1045
|
:general => {
|
1058
|
-
'platform'
|
1059
|
-
'packaging_platform' => 'el-5-i386'
|
1046
|
+
'platform' => 'el-5-i386'
|
1060
1047
|
},
|
1061
1048
|
:vmpooler => {
|
1062
1049
|
'template' => 'scientific-5-i386'
|
@@ -1064,8 +1051,7 @@ module BeakerHostGenerator
|
|
1064
1051
|
},
|
1065
1052
|
'scientific5-64' => {
|
1066
1053
|
:general => {
|
1067
|
-
'platform'
|
1068
|
-
'packaging_platform' => 'el-5-x86_64'
|
1054
|
+
'platform' => 'el-5-x86_64'
|
1069
1055
|
},
|
1070
1056
|
:vmpooler => {
|
1071
1057
|
'template' => 'scientific-5-x86_64'
|
@@ -1073,8 +1059,7 @@ module BeakerHostGenerator
|
|
1073
1059
|
},
|
1074
1060
|
'scientific6-32' => {
|
1075
1061
|
:general => {
|
1076
|
-
'platform'
|
1077
|
-
'packaging_platform' => 'el-6-i386'
|
1062
|
+
'platform' => 'el-6-i386'
|
1078
1063
|
},
|
1079
1064
|
:vmpooler => {
|
1080
1065
|
'template' => 'scientific-6-i386'
|
@@ -1082,8 +1067,7 @@ module BeakerHostGenerator
|
|
1082
1067
|
},
|
1083
1068
|
'scientific6-64' => {
|
1084
1069
|
:general => {
|
1085
|
-
'platform'
|
1086
|
-
'packaging_platform' => 'el-6-x86_64'
|
1070
|
+
'platform' => 'el-6-x86_64'
|
1087
1071
|
},
|
1088
1072
|
:vmpooler => {
|
1089
1073
|
'template' => 'scientific-6-x86_64'
|
@@ -1091,8 +1075,7 @@ module BeakerHostGenerator
|
|
1091
1075
|
},
|
1092
1076
|
'scientific7-64' => {
|
1093
1077
|
:general => {
|
1094
|
-
'platform'
|
1095
|
-
'packaging_platform' => 'el-7-x86_64'
|
1078
|
+
'platform' => 'el-7-x86_64'
|
1096
1079
|
},
|
1097
1080
|
:vmpooler => {
|
1098
1081
|
'template' => 'scientific-7-x86_64'
|
@@ -1116,8 +1099,7 @@ module BeakerHostGenerator
|
|
1116
1099
|
},
|
1117
1100
|
'sles11-32' => {
|
1118
1101
|
:general => {
|
1119
|
-
'platform'
|
1120
|
-
'packaging_platform' => 'sles-11-i386'
|
1102
|
+
'platform' => 'sles-11-i386'
|
1121
1103
|
},
|
1122
1104
|
:vmpooler => {
|
1123
1105
|
'template' => 'sles-11-i386'
|
@@ -1125,8 +1107,7 @@ module BeakerHostGenerator
|
|
1125
1107
|
},
|
1126
1108
|
'sles11-64' => {
|
1127
1109
|
:general => {
|
1128
|
-
'platform'
|
1129
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1110
|
+
'platform' => 'sles-11-x86_64'
|
1130
1111
|
},
|
1131
1112
|
:vmpooler => {
|
1132
1113
|
'template' => 'sles-11-x86_64'
|
@@ -1134,14 +1115,12 @@ module BeakerHostGenerator
|
|
1134
1115
|
},
|
1135
1116
|
'sles11-S390X' => {
|
1136
1117
|
:general => {
|
1137
|
-
'platform'
|
1138
|
-
'packaging_platform' => 'sles-11-s390x'
|
1118
|
+
'platform' => 'sles-11-s390x'
|
1139
1119
|
},
|
1140
1120
|
},
|
1141
1121
|
'sles12-64' => {
|
1142
1122
|
:general => {
|
1143
|
-
'platform'
|
1144
|
-
'packaging_platform' => 'sles-12-x86_64'
|
1123
|
+
'platform' => 'sles-12-x86_64'
|
1145
1124
|
},
|
1146
1125
|
:vmpooler => {
|
1147
1126
|
'template' => 'sles-12-x86_64'
|
@@ -1149,14 +1128,12 @@ module BeakerHostGenerator
|
|
1149
1128
|
},
|
1150
1129
|
'sles12-S390X' => {
|
1151
1130
|
:general => {
|
1152
|
-
'platform'
|
1153
|
-
'packaging_platform' => 'sles-12-s390x'
|
1131
|
+
'platform' => 'sles-12-s390x'
|
1154
1132
|
}
|
1155
1133
|
},
|
1156
1134
|
'sles12-POWER' => {
|
1157
1135
|
:general => {
|
1158
|
-
'platform'
|
1159
|
-
'packaging_platform' => 'sles-12-ppc64le'
|
1136
|
+
'platform' => 'sles-12-ppc64le'
|
1160
1137
|
},
|
1161
1138
|
:abs => {
|
1162
1139
|
'template' => 'sles-12-power8'
|
@@ -1164,8 +1141,7 @@ module BeakerHostGenerator
|
|
1164
1141
|
},
|
1165
1142
|
'sles15-64' => {
|
1166
1143
|
:general => {
|
1167
|
-
'platform'
|
1168
|
-
'packaging_platform' => 'sles-15-x86_64'
|
1144
|
+
'platform' => 'sles-15-x86_64'
|
1169
1145
|
},
|
1170
1146
|
:vmpooler => {
|
1171
1147
|
'template' => 'sles-15-x86_64'
|
@@ -1173,8 +1149,7 @@ module BeakerHostGenerator
|
|
1173
1149
|
},
|
1174
1150
|
'solaris10-32' => {
|
1175
1151
|
:general => {
|
1176
|
-
'platform'
|
1177
|
-
'packaging_platform' => 'solaris-10-i386'
|
1152
|
+
'platform' => 'solaris-10-i386'
|
1178
1153
|
},
|
1179
1154
|
:vmpooler => {
|
1180
1155
|
'template' => 'solaris-10-x86_64'
|
@@ -1182,8 +1157,7 @@ module BeakerHostGenerator
|
|
1182
1157
|
},
|
1183
1158
|
'solaris10-64' => {
|
1184
1159
|
:general => {
|
1185
|
-
'platform'
|
1186
|
-
'packaging_platform' => 'solaris-10-i386'
|
1160
|
+
'platform' => 'solaris-10-i386'
|
1187
1161
|
},
|
1188
1162
|
:vmpooler => {
|
1189
1163
|
'template' => 'solaris-10-x86_64'
|
@@ -1191,8 +1165,7 @@ module BeakerHostGenerator
|
|
1191
1165
|
},
|
1192
1166
|
'solaris10-SPARC' => {
|
1193
1167
|
:general => {
|
1194
|
-
'platform'
|
1195
|
-
'packaging_platform' => 'solaris-10-sparc'
|
1168
|
+
'platform' => 'solaris-10-sparc'
|
1196
1169
|
},
|
1197
1170
|
:abs => {
|
1198
1171
|
'template' => 'solaris-10-sparc'
|
@@ -1200,8 +1173,7 @@ module BeakerHostGenerator
|
|
1200
1173
|
},
|
1201
1174
|
'solaris11-32' => {
|
1202
1175
|
:general => {
|
1203
|
-
'platform'
|
1204
|
-
'packaging_platform' => 'solaris-11-i386'
|
1176
|
+
'platform' => 'solaris-11-i386'
|
1205
1177
|
},
|
1206
1178
|
:vmpooler => {
|
1207
1179
|
'template' => 'solaris-11-x86_64'
|
@@ -1209,8 +1181,7 @@ module BeakerHostGenerator
|
|
1209
1181
|
},
|
1210
1182
|
'solaris11-64' => {
|
1211
1183
|
:general => {
|
1212
|
-
'platform'
|
1213
|
-
'packaging_platform' => 'solaris-11-i386'
|
1184
|
+
'platform' => 'solaris-11-i386'
|
1214
1185
|
},
|
1215
1186
|
:vmpooler => {
|
1216
1187
|
'template' => 'solaris-11-x86_64'
|
@@ -1218,8 +1189,7 @@ module BeakerHostGenerator
|
|
1218
1189
|
},
|
1219
1190
|
'solaris11-SPARC' => {
|
1220
1191
|
:general => {
|
1221
|
-
'platform'
|
1222
|
-
'packaging_platform' => 'solaris-11-sparc'
|
1192
|
+
'platform' => 'solaris-11-sparc'
|
1223
1193
|
},
|
1224
1194
|
:abs => {
|
1225
1195
|
'template' => 'solaris-11-sparc'
|
@@ -1263,8 +1233,7 @@ module BeakerHostGenerator
|
|
1263
1233
|
},
|
1264
1234
|
'vro6-64' => {
|
1265
1235
|
:general => {
|
1266
|
-
'platform'
|
1267
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1236
|
+
'platform' => 'sles-11-x86_64'
|
1268
1237
|
},
|
1269
1238
|
:vmpooler => {
|
1270
1239
|
'template' => 'vro-6-x86_64'
|
@@ -1272,8 +1241,7 @@ module BeakerHostGenerator
|
|
1272
1241
|
},
|
1273
1242
|
'vro7-64' => {
|
1274
1243
|
:general => {
|
1275
|
-
'platform'
|
1276
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1244
|
+
'platform' => 'sles-11-x86_64'
|
1277
1245
|
},
|
1278
1246
|
:vmpooler => {
|
1279
1247
|
'template' => 'vro-7-x86_64'
|
@@ -1281,8 +1249,7 @@ module BeakerHostGenerator
|
|
1281
1249
|
},
|
1282
1250
|
'vro71-64' => {
|
1283
1251
|
:general => {
|
1284
|
-
'platform'
|
1285
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1252
|
+
'platform' => 'sles-11-x86_64'
|
1286
1253
|
},
|
1287
1254
|
:vmpooler => {
|
1288
1255
|
'template' => 'vro-71-x86_64'
|
@@ -1290,8 +1257,7 @@ module BeakerHostGenerator
|
|
1290
1257
|
},
|
1291
1258
|
'vro73-64' => {
|
1292
1259
|
:general => {
|
1293
|
-
'platform'
|
1294
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1260
|
+
'platform' => 'sles-11-x86_64'
|
1295
1261
|
},
|
1296
1262
|
:vmpooler => {
|
1297
1263
|
'template' => 'vro-73-x86_64'
|
@@ -1299,8 +1265,7 @@ module BeakerHostGenerator
|
|
1299
1265
|
},
|
1300
1266
|
'vro74-64' => {
|
1301
1267
|
:general => {
|
1302
|
-
'platform'
|
1303
|
-
'packaging_platform' => 'sles-11-x86_64'
|
1268
|
+
'platform' => 'sles-11-x86_64'
|
1304
1269
|
},
|
1305
1270
|
:vmpooler => {
|
1306
1271
|
'template' => 'vro-74-x86_64'
|
@@ -1744,6 +1709,7 @@ module BeakerHostGenerator
|
|
1744
1709
|
}
|
1745
1710
|
})
|
1746
1711
|
|
1712
|
+
result['archlinux-64'] = result['archlinuxrolling-64']
|
1747
1713
|
result
|
1748
1714
|
end
|
1749
1715
|
|
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.12.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-02-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|