beaker-hostgenerator 1.0.2 → 1.1.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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OGM5ZmYyNGRlYWVkODZjYjdjMTE1MjRlNjMzZjU3M2MwZDc5N2ZhMg==
4
+ YzczZGY0YzQ5NGJkNzlmZTNkMGRkN2RiNzI1OGNjYTNhNTQ4M2FjMg==
5
5
  data.tar.gz: !binary |-
6
- OTgwNGJmZWYzY2ViNjE3ZjYzYjM4YTQwNTIzNTRjOGY4ZDg4MTQwNQ==
6
+ NDA3MmY4YzIxYTI0OTg0MDU2MTcwYTUwNTA1ZmJmZTEyNGU2YzU4Yg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZTdkZWU4NTQ1N2JmOTk3NjAyZDNlMjQwNWUwN2I1MTFjODRiMTkxOTMzOWFh
10
- MzUyNDJkN2YwY2Q4N2VlYzQyMDcxMGQ1NTk4NTBlNjIyNmYyODAyMGJkN2M0
11
- YWI2ODRiZDlkZGE5MGEyYjc0NTEzMzIwODJkNTcyZjhlZjBlODU=
9
+ NmRlZTY4NzUzMTc5ZDMwMGViN2QwYTVmNzhmMmZlYWY4ZTE4MjUxNDI5OGY2
10
+ ZjM0ZmRmNjlmNjAwOTkwYWMyZDJiNDk4ZmRhZmIwYmQ0NzU5MTU1NWEwNmU0
11
+ ZjRhY2Y0MTgwZjc0NzRiNTEzZDA4YTFiMjliMjQ1OTM0ZTM0MWM=
12
12
  data.tar.gz: !binary |-
13
- ODVmMmNiM2NkNjgwMzljZDgyNTBlZGExMmU2MDA5Nzk0MzdkNDk2YzI5ZGIx
14
- NTMzY2M1ODZjOWQzNDVmN2UyYzcwZjYyZTQ5NmNmMzdlNTBjOTQ4MjRlNjhi
15
- NTk0Mjg1YjFjOGQ5M2E3OGM1YWY3YmQzOWE4MTEzMjNkNjQ4ODY=
13
+ YWRlMTRkNDk2ZGVhMjFkMmIwZjgyNjZmZWYyMDdlNDYxYjUxM2U1ZWVmZmFl
14
+ Mzk2NThlNDYwY2IyZDc5YzMxNzg4NzFhMzU3Mjk5OTU0ZWVjNWFjMWU4OTI0
15
+ NTIyN2UzZThlNzc0NWFmNTJjNzAzODFmOWY5Mjk3MTg3NDJkNDU=
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  This project makes a strong effort to adhere to [Semantic
5
5
  Versioning](http://semver.org).
6
6
 
7
+ ## [1.1.0] - 2017-9-7
8
+ - Add new 'packaging_platform' value to the OSes we build packages for to
9
+ support new install methods in Beaker.
10
+
7
11
  ## [1.0.2] - 2017-8-21
8
12
  - Add platforms:
9
13
  - sles-12-power8
@@ -74,7 +74,8 @@ module BeakerHostGenerator
74
74
  {
75
75
  'aix53-POWER' => {
76
76
  :general => {
77
- 'platform' => 'aix-5.3-power'
77
+ 'platform' => 'aix-5.3-power',
78
+ 'packaging_platform' => 'aix-5.3-power'
78
79
  },
79
80
  :abs => {
80
81
  'template' => 'aix-5.3-power'
@@ -82,7 +83,8 @@ module BeakerHostGenerator
82
83
  },
83
84
  'aix61-POWER' => {
84
85
  :general => {
85
- 'platform' => 'aix-6.1-power'
86
+ 'platform' => 'aix-6.1-power',
87
+ 'packaging_platform' => 'aix-6.1-power'
86
88
  },
87
89
  :abs => {
88
90
  'template' => 'aix-6.1-power'
@@ -90,7 +92,8 @@ module BeakerHostGenerator
90
92
  },
91
93
  'aix71-POWER' => {
92
94
  :general => {
93
- 'platform' => 'aix-7.1-power'
95
+ 'platform' => 'aix-7.1-power',
96
+ 'packaging_platform' => 'aix-7.1-power'
94
97
  },
95
98
  :abs => {
96
99
  'template' => 'aix-7.1-power'
@@ -98,7 +101,8 @@ module BeakerHostGenerator
98
101
  },
99
102
  'aix72-POWER' => {
100
103
  :general => {
101
- 'platform' => 'aix-7.2-power'
104
+ 'platform' => 'aix-7.2-power',
105
+ 'packaging_platform' => 'aix-7.1-power'
102
106
  },
103
107
  :abs => {
104
108
  'template' => 'aix-7.2-power'
@@ -106,7 +110,8 @@ module BeakerHostGenerator
106
110
  },
107
111
  'arista4-32' => {
108
112
  :general => {
109
- 'platform' => 'eos-4-i386'
113
+ 'platform' => 'eos-4-i386',
114
+ 'packaging_platform' => 'eos-4-i386'
110
115
  },
111
116
  :vmpooler => {
112
117
  'template' => 'arista-4-i386'
@@ -130,7 +135,8 @@ module BeakerHostGenerator
130
135
  },
131
136
  'centos5-32' => {
132
137
  :general => {
133
- 'platform' => 'el-5-i386'
138
+ 'platform' => 'el-5-i386',
139
+ 'packaging_platform' => 'el-5-i386'
134
140
  },
135
141
  :vmpooler => {
136
142
  'template' => 'centos-5-i386'
@@ -138,7 +144,8 @@ module BeakerHostGenerator
138
144
  },
139
145
  'centos5-64' => {
140
146
  :general => {
141
- 'platform' => 'el-5-x86_64'
147
+ 'platform' => 'el-5-x86_64',
148
+ 'packaging_platform' => 'el-5-x86_64'
142
149
  },
143
150
  :vmpooler => {
144
151
  'template' => 'centos-5-x86_64'
@@ -146,7 +153,8 @@ module BeakerHostGenerator
146
153
  },
147
154
  'centos6-32' => {
148
155
  :general => {
149
- 'platform' => 'el-6-i386'
156
+ 'platform' => 'el-6-i386',
157
+ 'packaging_platform' => 'el-6-i386'
150
158
  },
151
159
  :vmpooler => {
152
160
  'template' => 'centos-6-i386'
@@ -154,7 +162,8 @@ module BeakerHostGenerator
154
162
  },
155
163
  'centos6-64' => {
156
164
  :general => {
157
- 'platform' => 'el-6-x86_64'
165
+ 'platform' => 'el-6-x86_64',
166
+ 'packaging_platform' => 'el-6-x86_64'
158
167
  },
159
168
  :vmpooler => {
160
169
  'template' => 'centos-6-x86_64'
@@ -162,7 +171,8 @@ module BeakerHostGenerator
162
171
  },
163
172
  'centos7-64' => {
164
173
  :general => {
165
- 'platform' => 'el-7-x86_64'
174
+ 'platform' => 'el-7-x86_64',
175
+ 'packaging_platform' => 'el-7-x86_64'
166
176
  },
167
177
  :vmpooler => {
168
178
  'template' => 'centos-7-x86_64'
@@ -170,7 +180,8 @@ module BeakerHostGenerator
170
180
  },
171
181
  'cisconx-64' => {
172
182
  :general => {
173
- 'platform' => 'cisco_nexus-7-x86_64',
183
+ 'platform' => 'cisco_nexus-7-x86_64',
184
+ 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
174
185
  'vrf' => 'management',
175
186
  'ssh' => {
176
187
  'user' => 'beaker'
@@ -182,7 +193,8 @@ module BeakerHostGenerator
182
193
  },
183
194
  'ciscoxr-64' => {
184
195
  :general => {
185
- 'platform' => 'cisco_ios_xr-6-x86_64'
196
+ 'platform' => 'cisco_ios_xr-6-x86_64',
197
+ 'packaging_platform' => 'cisco-wrlinux-7-x86_64'
186
198
  },
187
199
  :vmpooler => {
188
200
  'template' => 'cisco-exr-9k-x86_64'
@@ -190,7 +202,8 @@ module BeakerHostGenerator
190
202
  },
191
203
  'cumulus25-64' => {
192
204
  :general => {
193
- 'platform' => 'cumulus-2.5-x86_64'
205
+ 'platform' => 'cumulus-2.5-x86_64',
206
+ 'packaging_platform' => 'cumulus-2.2-amd64'
194
207
  },
195
208
  :vmpooler => {
196
209
  'template' => 'cumulus-vx-25-x86_64'
@@ -214,7 +227,8 @@ module BeakerHostGenerator
214
227
  },
215
228
  'debian7-32' => {
216
229
  :general => {
217
- 'platform' => 'debian-7-i386'
230
+ 'platform' => 'debian-7-i386',
231
+ 'packaging_platform' => 'debian-7-i386'
218
232
  },
219
233
  :vmpooler => {
220
234
  'template' => 'debian-7-i386'
@@ -222,7 +236,8 @@ module BeakerHostGenerator
222
236
  },
223
237
  'debian7-64' => {
224
238
  :general => {
225
- 'platform' => 'debian-7-amd64'
239
+ 'platform' => 'debian-7-amd64',
240
+ 'packaging_platform' => 'debian-7-amd64'
226
241
  },
227
242
  :vmpooler => {
228
243
  'template' => 'debian-7-x86_64'
@@ -230,7 +245,8 @@ module BeakerHostGenerator
230
245
  },
231
246
  'debian8-32' => {
232
247
  :general => {
233
- 'platform' => 'debian-8-i386'
248
+ 'platform' => 'debian-8-i386',
249
+ 'packaging_platform' => 'debian-8-i386'
234
250
  },
235
251
  :vmpooler => {
236
252
  'template' => 'debian-8-i386'
@@ -238,7 +254,8 @@ module BeakerHostGenerator
238
254
  },
239
255
  'debian8-64' => {
240
256
  :general => {
241
- 'platform' => 'debian-8-amd64'
257
+ 'platform' => 'debian-8-amd64',
258
+ 'packaging_platform' => 'debian-8-amd64'
242
259
  },
243
260
  :vmpooler => {
244
261
  'template' => 'debian-8-x86_64'
@@ -246,7 +263,8 @@ module BeakerHostGenerator
246
263
  },
247
264
  'debian9-32' => {
248
265
  :general => {
249
- 'platform' => 'debian-9-i386'
266
+ 'platform' => 'debian-9-i386',
267
+ 'packaging_platform' => 'debian-9-i386'
250
268
  },
251
269
  :vmpooler => {
252
270
  'template' => 'debian-9-i386'
@@ -254,7 +272,8 @@ module BeakerHostGenerator
254
272
  },
255
273
  'debian9-64' => {
256
274
  :general => {
257
- 'platform' => 'debian-9-amd64'
275
+ 'platform' => 'debian-9-amd64',
276
+ 'packaging_platform' => 'debian-9-amd64'
258
277
  },
259
278
  :vmpooler => {
260
279
  'template' => 'debian-9-x86_64'
@@ -350,7 +369,8 @@ module BeakerHostGenerator
350
369
  },
351
370
  'fedora24-32' => {
352
371
  :general => {
353
- 'platform' => 'fedora-24-i386'
372
+ 'platform' => 'fedora-24-i386',
373
+ 'packaging_platform' => 'fedora-24-i386'
354
374
  },
355
375
  :vmpooler => {
356
376
  'template' => 'fedora-24-i386'
@@ -358,7 +378,8 @@ module BeakerHostGenerator
358
378
  },
359
379
  'fedora24-64' => {
360
380
  :general => {
361
- 'platform' => 'fedora-24-x86_64'
381
+ 'platform' => 'fedora-24-x86_64',
382
+ 'packaging_platform' => 'fedora-24-x86_64'
362
383
  },
363
384
  :vmpooler => {
364
385
  'template' => 'fedora-24-x86_64'
@@ -366,7 +387,8 @@ module BeakerHostGenerator
366
387
  },
367
388
  'fedora25-32' => {
368
389
  :general => {
369
- 'platform' => 'fedora-25-i386'
390
+ 'platform' => 'fedora-25-i386',
391
+ 'packaging_platform' => 'fedora-25-i386'
370
392
  },
371
393
  :vmpooler => {
372
394
  'template' => 'fedora-25-i386'
@@ -374,7 +396,8 @@ module BeakerHostGenerator
374
396
  },
375
397
  'fedora25-64' => {
376
398
  :general => {
377
- 'platform' => 'fedora-25-x86_64'
399
+ 'platform' => 'fedora-25-x86_64',
400
+ 'packaging_platform' => 'fedora-25-x86_64'
378
401
  },
379
402
  :vmpooler => {
380
403
  'template' => 'fedora-25-x86_64'
@@ -382,7 +405,8 @@ module BeakerHostGenerator
382
405
  },
383
406
  'fedora26-64' => {
384
407
  :general => {
385
- 'platform' => 'fedora-26-x86_64'
408
+ 'platform' => 'fedora-26-x86_64',
409
+ 'packaging_platform' => 'fedora-26-x86_64'
386
410
  },
387
411
  :vmpooler => {
388
412
  'template' => 'fedora-26-x86_64'
@@ -414,7 +438,8 @@ module BeakerHostGenerator
414
438
  },
415
439
  'oracle5-32' => {
416
440
  :general => {
417
- 'platform' => 'el-5-i386'
441
+ 'platform' => 'el-5-i386',
442
+ 'packaging_platform' => 'el-5-i386'
418
443
  },
419
444
  :vmpooler => {
420
445
  'template' => 'oracle-5-i386'
@@ -422,7 +447,8 @@ module BeakerHostGenerator
422
447
  },
423
448
  'oracle5-64' => {
424
449
  :general => {
425
- 'platform' => 'el-5-x86_64'
450
+ 'platform' => 'el-5-x86_64',
451
+ 'packaging_platform' => 'el-5-x86_64'
426
452
  },
427
453
  :vmpooler => {
428
454
  'template' => 'oracle-5-x86_64'
@@ -430,7 +456,8 @@ module BeakerHostGenerator
430
456
  },
431
457
  'oracle6-32' => {
432
458
  :general => {
433
- 'platform' => 'el-6-i386'
459
+ 'platform' => 'el-6-i386',
460
+ 'packaging_platform' => 'el-6-i386'
434
461
  },
435
462
  :vmpooler => {
436
463
  'template' => 'oracle-6-i386'
@@ -438,7 +465,8 @@ module BeakerHostGenerator
438
465
  },
439
466
  'oracle6-64' => {
440
467
  :general => {
441
- 'platform' => 'el-6-x86_64'
468
+ 'platform' => 'el-6-x86_64',
469
+ 'packaging_platform' => 'el-6-x86_64'
442
470
  },
443
471
  :vmpooler => {
444
472
  'template' => 'oracle-6-x86_64'
@@ -446,7 +474,8 @@ module BeakerHostGenerator
446
474
  },
447
475
  'oracle7-64' => {
448
476
  :general => {
449
- 'platform' => 'el-7-x86_64'
477
+ 'platform' => 'el-7-x86_64',
478
+ 'packaging_platform' => 'el-7-x86_64'
450
479
  },
451
480
  :vmpooler => {
452
481
  'template' => 'oracle-7-x86_64'
@@ -462,7 +491,8 @@ module BeakerHostGenerator
462
491
  },
463
492
  'osx1010-64' => {
464
493
  :general => {
465
- 'platform' => 'osx-10.10-x86_64'
494
+ 'platform' => 'osx-10.10-x86_64',
495
+ 'packaging_platform' => 'osx-10.10-x86_64'
466
496
  },
467
497
  :vmpooler => {
468
498
  'template' => 'osx-1010-x86_64'
@@ -470,7 +500,8 @@ module BeakerHostGenerator
470
500
  },
471
501
  'osx1011-64' => {
472
502
  :general => {
473
- 'platform' => 'osx-10.11-x86_64'
503
+ 'platform' => 'osx-10.11-x86_64',
504
+ 'packaging_platform' => 'osx-10.11-x86_64'
474
505
  },
475
506
  :vmpooler => {
476
507
  'template' => 'osx-1011-x86_64'
@@ -478,7 +509,8 @@ module BeakerHostGenerator
478
509
  },
479
510
  'osx1012-64' => {
480
511
  :general => {
481
- 'platform' => 'osx-10.12-x86_64'
512
+ 'platform' => 'osx-10.12-x86_64',
513
+ 'packaging_platform' => 'osx-10.12-x86_64'
482
514
  },
483
515
  :vmpooler => {
484
516
  'template' => 'osx-1012-x86_64'
@@ -502,7 +534,8 @@ module BeakerHostGenerator
502
534
  },
503
535
  'redhat5-32' => {
504
536
  :general => {
505
- 'platform' => 'el-5-i386'
537
+ 'platform' => 'el-5-i386',
538
+ 'packaging_platform' => 'el-5-i386'
506
539
  },
507
540
  :vmpooler => {
508
541
  'template' => 'redhat-5-i386'
@@ -510,7 +543,8 @@ module BeakerHostGenerator
510
543
  },
511
544
  'redhat5-64' => {
512
545
  :general => {
513
- 'platform' => 'el-5-x86_64'
546
+ 'platform' => 'el-5-x86_64',
547
+ 'packaging_platform' => 'el-5-x86_64'
514
548
  },
515
549
  :vmpooler => {
516
550
  'template' => 'redhat-5-x86_64'
@@ -518,7 +552,8 @@ module BeakerHostGenerator
518
552
  },
519
553
  'redhat6-32' => {
520
554
  :general => {
521
- 'platform' => 'el-6-i386'
555
+ 'platform' => 'el-6-i386',
556
+ 'packaging_platform' => 'el-6-i386'
522
557
  },
523
558
  :vmpooler => {
524
559
  'template' => 'redhat-6-i386'
@@ -526,7 +561,8 @@ module BeakerHostGenerator
526
561
  },
527
562
  'redhat6-64' => {
528
563
  :general => {
529
- 'platform' => 'el-6-x86_64'
564
+ 'platform' => 'el-6-x86_64',
565
+ 'packaging_platform' => 'el-6-x86_64'
530
566
  },
531
567
  :vmpooler => {
532
568
  'template' => 'redhat-6-x86_64'
@@ -534,12 +570,14 @@ module BeakerHostGenerator
534
570
  },
535
571
  'redhat6-S390X' => {
536
572
  :general => {
537
- 'platform' => 'el-6-s390x'
573
+ 'platform' => 'el-6-s390x',
574
+ 'packaging_platform' => 'el-6-s390x'
538
575
  },
539
576
  },
540
577
  'redhat7-64' => {
541
578
  :general => {
542
- 'platform' => 'el-7-x86_64'
579
+ 'platform' => 'el-7-x86_64',
580
+ 'packaging_platform' => 'el-7-x86_64'
543
581
  },
544
582
  :vmpooler => {
545
583
  'template' => 'redhat-7-x86_64'
@@ -547,7 +585,8 @@ module BeakerHostGenerator
547
585
  },
548
586
  'redhat7-POWER' => {
549
587
  :general => {
550
- 'platform' => 'el-7-ppc64le'
588
+ 'platform' => 'el-7-ppc64le',
589
+ 'packaging_platform' => 'el-7-ppc64le'
551
590
  },
552
591
  :abs => {
553
592
  'template' => 'redhat-7.3-power8'
@@ -555,12 +594,14 @@ module BeakerHostGenerator
555
594
  },
556
595
  'redhat7-S390X' => {
557
596
  :general => {
558
- 'platform' => 'el-7-s390x'
597
+ 'platform' => 'el-7-s390x',
598
+ 'packaging_platform' => 'el-7-s390x'
559
599
  },
560
600
  },
561
601
  'scientific5-32' => {
562
602
  :general => {
563
- 'platform' => 'el-5-i386'
603
+ 'platform' => 'el-5-i386',
604
+ 'packaging_platform' => 'el-5-i386'
564
605
  },
565
606
  :vmpooler => {
566
607
  'template' => 'scientific-5-i386'
@@ -568,7 +609,8 @@ module BeakerHostGenerator
568
609
  },
569
610
  'scientific5-64' => {
570
611
  :general => {
571
- 'platform' => 'el-5-x86_64'
612
+ 'platform' => 'el-5-x86_64',
613
+ 'packaging_platform' => 'el-5-x86_64'
572
614
  },
573
615
  :vmpooler => {
574
616
  'template' => 'scientific-5-x86_64'
@@ -576,7 +618,8 @@ module BeakerHostGenerator
576
618
  },
577
619
  'scientific6-32' => {
578
620
  :general => {
579
- 'platform' => 'el-6-i386'
621
+ 'platform' => 'el-6-i386',
622
+ 'packaging_platform' => 'el-6-i386'
580
623
  },
581
624
  :vmpooler => {
582
625
  'template' => 'scientific-6-i386'
@@ -584,7 +627,8 @@ module BeakerHostGenerator
584
627
  },
585
628
  'scientific6-64' => {
586
629
  :general => {
587
- 'platform' => 'el-6-x86_64'
630
+ 'platform' => 'el-6-x86_64',
631
+ 'packaging_platform' => 'el-6-x86_64'
588
632
  },
589
633
  :vmpooler => {
590
634
  'template' => 'scientific-6-x86_64'
@@ -592,7 +636,8 @@ module BeakerHostGenerator
592
636
  },
593
637
  'scientific7-64' => {
594
638
  :general => {
595
- 'platform' => 'el-7-x86_64'
639
+ 'platform' => 'el-7-x86_64',
640
+ 'packaging_platform' => 'el-7-x86_64'
596
641
  },
597
642
  :vmpooler => {
598
643
  'template' => 'scientific-7-x86_64'
@@ -616,7 +661,8 @@ module BeakerHostGenerator
616
661
  },
617
662
  'sles11-32' => {
618
663
  :general => {
619
- 'platform' => 'sles-11-i386'
664
+ 'platform' => 'sles-11-i386',
665
+ 'packaging_platform' => 'sles-11-i386'
620
666
  },
621
667
  :vmpooler => {
622
668
  'template' => 'sles-11-i386'
@@ -624,7 +670,8 @@ module BeakerHostGenerator
624
670
  },
625
671
  'sles11-64' => {
626
672
  :general => {
627
- 'platform' => 'sles-11-x86_64'
673
+ 'platform' => 'sles-11-x86_64',
674
+ 'packaging_platform' => 'sles-11-x86_64'
628
675
  },
629
676
  :vmpooler => {
630
677
  'template' => 'sles-11-x86_64'
@@ -632,12 +679,14 @@ module BeakerHostGenerator
632
679
  },
633
680
  'sles11-S390X' => {
634
681
  :general => {
635
- 'platform' => 'sles-11-s390x'
682
+ 'platform' => 'sles-11-s390x',
683
+ 'packaging_platform' => 'sles-11-s390x'
636
684
  },
637
685
  },
638
686
  'sles12-64' => {
639
687
  :general => {
640
- 'platform' => 'sles-12-x86_64'
688
+ 'platform' => 'sles-12-x86_64',
689
+ 'packaging_platform' => 'sles-12-x86_64'
641
690
  },
642
691
  :vmpooler => {
643
692
  'template' => 'sles-12-x86_64'
@@ -645,12 +694,14 @@ module BeakerHostGenerator
645
694
  },
646
695
  'sles12-S390X' => {
647
696
  :general => {
648
- 'platform' => 'sles-12-s390x'
697
+ 'platform' => 'sles-12-s390x',
698
+ 'packaging_platform' => 'sles-12-s390x'
649
699
  }
650
700
  },
651
701
  'sles12-POWER' => {
652
702
  :general => {
653
- 'platform' => 'sles-12-ppc64le'
703
+ 'platform' => 'sles-12-ppc64le',
704
+ 'packaging_platform' => 'sles-12-ppc64le'
654
705
  },
655
706
  :abs => {
656
707
  'template' => 'sles-12-power8'
@@ -658,7 +709,8 @@ module BeakerHostGenerator
658
709
  },
659
710
  'solaris10-32' => {
660
711
  :general => {
661
- 'platform' => 'solaris-10-i386'
712
+ 'platform' => 'solaris-10-i386',
713
+ 'packaging_platform' => 'solaris-10-i386'
662
714
  },
663
715
  :vmpooler => {
664
716
  'template' => 'solaris-10-x86_64'
@@ -666,7 +718,8 @@ module BeakerHostGenerator
666
718
  },
667
719
  'solaris10-64' => {
668
720
  :general => {
669
- 'platform' => 'solaris-10-i386'
721
+ 'platform' => 'solaris-10-i386',
722
+ 'packaging_platform' => 'solaris-10-i386'
670
723
  },
671
724
  :vmpooler => {
672
725
  'template' => 'solaris-10-x86_64'
@@ -674,7 +727,8 @@ module BeakerHostGenerator
674
727
  },
675
728
  'solaris10-SPARC' => {
676
729
  :general => {
677
- 'platform' => 'solaris-10-sparc'
730
+ 'platform' => 'solaris-10-sparc',
731
+ 'packaging_platform' => 'solaris-10-sparc'
678
732
  },
679
733
  :abs => {
680
734
  'template' => 'solaris-10-sparc'
@@ -682,7 +736,8 @@ module BeakerHostGenerator
682
736
  },
683
737
  'solaris11-32' => {
684
738
  :general => {
685
- 'platform' => 'solaris-11-i386'
739
+ 'platform' => 'solaris-11-i386',
740
+ 'packaging_platform' => 'solaris-11-i386'
686
741
  },
687
742
  :vmpooler => {
688
743
  'template' => 'solaris-11-x86_64'
@@ -690,7 +745,8 @@ module BeakerHostGenerator
690
745
  },
691
746
  'solaris11-64' => {
692
747
  :general => {
693
- 'platform' => 'solaris-11-i386'
748
+ 'platform' => 'solaris-11-i386',
749
+ 'packaging_platform' => 'solaris-11-i386'
694
750
  },
695
751
  :vmpooler => {
696
752
  'template' => 'solaris-11-x86_64'
@@ -698,7 +754,8 @@ module BeakerHostGenerator
698
754
  },
699
755
  'solaris11-SPARC' => {
700
756
  :general => {
701
- 'platform' => 'solaris-11-sparc'
757
+ 'platform' => 'solaris-11-sparc',
758
+ 'packaging_platform' => 'solaris-11-sparc'
702
759
  },
703
760
  :abs => {
704
761
  'template' => 'solaris-11-sparc'
@@ -706,7 +763,8 @@ module BeakerHostGenerator
706
763
  },
707
764
  'solaris112-32' => {
708
765
  :general => {
709
- 'platform' => 'solaris-11.2-i386'
766
+ 'platform' => 'solaris-11.2-i386',
767
+ 'packaging_platform' => 'solaris-11-i386'
710
768
  },
711
769
  :vmpooler => {
712
770
  'template' => 'solaris-112-x86_64'
@@ -714,7 +772,8 @@ module BeakerHostGenerator
714
772
  },
715
773
  'solaris112-64' => {
716
774
  :general => {
717
- 'platform' => 'solaris-11.2-i386'
775
+ 'platform' => 'solaris-11.2-i386',
776
+ 'packaging_platform' => 'solaris-11-i386'
718
777
  },
719
778
  :vmpooler => {
720
779
  'template' => 'solaris-112-x86_64'
@@ -754,7 +813,8 @@ module BeakerHostGenerator
754
813
  },
755
814
  'ubuntu1404-32' => {
756
815
  :general => {
757
- 'platform' => 'ubuntu-14.04-i386'
816
+ 'platform' => 'ubuntu-14.04-i386',
817
+ 'packaging_platform' => 'ubuntu-14.04-i386'
758
818
  },
759
819
  :vmpooler => {
760
820
  'template' => 'ubuntu-1404-i386'
@@ -762,7 +822,8 @@ module BeakerHostGenerator
762
822
  },
763
823
  'ubuntu1404-64' => {
764
824
  :general => {
765
- 'platform' => 'ubuntu-14.04-amd64'
825
+ 'platform' => 'ubuntu-14.04-amd64',
826
+ 'packaging_platform' => 'ubuntu-14.04-amd64'
766
827
  },
767
828
  :vmpooler => {
768
829
  'template' => 'ubuntu-1404-x86_64'
@@ -802,7 +863,8 @@ module BeakerHostGenerator
802
863
  },
803
864
  'ubuntu1604-32' => {
804
865
  :general => {
805
- 'platform' => 'ubuntu-16.04-i386'
866
+ 'platform' => 'ubuntu-16.04-i386',
867
+ 'packaging_platform' => 'ubuntu-16.04-i386'
806
868
  },
807
869
  :vmpooler => {
808
870
  'template' => 'ubuntu-1604-i386'
@@ -810,7 +872,8 @@ module BeakerHostGenerator
810
872
  },
811
873
  'ubuntu1604-64' => {
812
874
  :general => {
813
- 'platform' => 'ubuntu-16.04-amd64'
875
+ 'platform' => 'ubuntu-16.04-amd64',
876
+ 'packaging_platform' => 'ubuntu-16.04-amd64'
814
877
  },
815
878
  :vmpooler => {
816
879
  'template' => 'ubuntu-1604-x86_64'
@@ -818,7 +881,8 @@ module BeakerHostGenerator
818
881
  },
819
882
  'ubuntu1604-POWER' => {
820
883
  :general => {
821
- 'platform' => 'ubuntu-16.04-ppc64el'
884
+ 'platform' => 'ubuntu-16.04-ppc64el',
885
+ 'packaging_platform' => 'ubuntu-16.04-ppc64el'
822
886
  },
823
887
  :abs => {
824
888
  'template' => 'ubuntu-16.04-power8'
@@ -842,7 +906,8 @@ module BeakerHostGenerator
842
906
  },
843
907
  'vro6-64' => {
844
908
  :general => {
845
- 'platform' => 'sles-11-x86_64'
909
+ 'platform' => 'sles-11-x86_64',
910
+ 'packaging_platform' => 'sles-11-x86_64'
846
911
  },
847
912
  :vmpooler => {
848
913
  'template' => 'vro-6-x86_64'
@@ -850,7 +915,8 @@ module BeakerHostGenerator
850
915
  },
851
916
  'vro7-64' => {
852
917
  :general => {
853
- 'platform' => 'sles-11-x86_64'
918
+ 'platform' => 'sles-11-x86_64',
919
+ 'packaging_platform' => 'sles-11-x86_64'
854
920
  },
855
921
  :vmpooler => {
856
922
  'template' => 'vro-7-x86_64'
@@ -858,7 +924,8 @@ module BeakerHostGenerator
858
924
  },
859
925
  'windows2003-64' => {
860
926
  :general => {
861
- 'platform' => 'windows-2003-64',
927
+ 'platform' => 'windows-2003-64',
928
+ 'packaging_platform' => 'windows-2012-x64',
862
929
  'ruby_arch' => 'x64'
863
930
  },
864
931
  :vmpooler => {
@@ -867,7 +934,8 @@ module BeakerHostGenerator
867
934
  },
868
935
  'windows2003-6432' => {
869
936
  :general => {
870
- 'platform' => 'windows-2003-64',
937
+ 'platform' => 'windows-2003-64',
938
+ 'packaging_platform' => 'windows-2012-x64',
871
939
  'ruby_arch' => 'x86'
872
940
  },
873
941
  :vmpooler => {
@@ -876,7 +944,8 @@ module BeakerHostGenerator
876
944
  },
877
945
  'windows2003r2-32' => {
878
946
  :general => {
879
- 'platform' => 'windows-2003r2-32',
947
+ 'platform' => 'windows-2003r2-32',
948
+ 'packaging_platform' => 'windows-2012-x86',
880
949
  'ruby_arch' => 'x86'
881
950
  },
882
951
  :vmpooler => {
@@ -885,7 +954,8 @@ module BeakerHostGenerator
885
954
  },
886
955
  'windows2003r2-64' => {
887
956
  :general => {
888
- 'platform' => 'windows-2003r2-64',
957
+ 'platform' => 'windows-2003r2-64',
958
+ 'packaging_platform' => 'windows-2012-x64',
889
959
  'ruby_arch' => 'x64'
890
960
  },
891
961
  :vmpooler => {
@@ -894,7 +964,8 @@ module BeakerHostGenerator
894
964
  },
895
965
  'windows2003r2-6432' => {
896
966
  :general => {
897
- 'platform' => 'windows-2003r2-64',
967
+ 'platform' => 'windows-2003r2-64',
968
+ 'packaging_platform' => 'windows-2012-x64',
898
969
  'ruby_arch' => 'x86'
899
970
  },
900
971
  :vmpooler => {
@@ -903,7 +974,8 @@ module BeakerHostGenerator
903
974
  },
904
975
  'windows2008-64' => {
905
976
  :general => {
906
- 'platform' => 'windows-2008-64',
977
+ 'platform' => 'windows-2008-64',
978
+ 'packaging_platform' => 'windows-2012-x64',
907
979
  'ruby_arch' => 'x64'
908
980
  },
909
981
  :vmpooler => {
@@ -912,7 +984,8 @@ module BeakerHostGenerator
912
984
  },
913
985
  'windows2008-6432' => {
914
986
  :general => {
915
- 'platform' => 'windows-2008-64',
987
+ 'platform' => 'windows-2008-64',
988
+ 'packaging_platform' => 'windows-2012-x64',
916
989
  'ruby_arch' => 'x86'
917
990
  },
918
991
  :vmpooler => {
@@ -921,7 +994,8 @@ module BeakerHostGenerator
921
994
  },
922
995
  'windows2008r2-64' => {
923
996
  :general => {
924
- 'platform' => 'windows-2008r2-64',
997
+ 'platform' => 'windows-2008r2-64',
998
+ 'packaging_platform' => 'windows-2012-x64',
925
999
  'ruby_arch' => 'x64'
926
1000
  },
927
1001
  :vmpooler => {
@@ -930,7 +1004,8 @@ module BeakerHostGenerator
930
1004
  },
931
1005
  'windows2008r2-6432' => {
932
1006
  :general => {
933
- 'platform' => 'windows-2008r2-64',
1007
+ 'platform' => 'windows-2008r2-64',
1008
+ 'packaging_platform' => 'windows-2012-x64',
934
1009
  'ruby_arch' => 'x86'
935
1010
  },
936
1011
  :vmpooler => {
@@ -939,7 +1014,8 @@ module BeakerHostGenerator
939
1014
  },
940
1015
  'windows2012-64' => {
941
1016
  :general => {
942
- 'platform' => 'windows-2012-64',
1017
+ 'platform' => 'windows-2012-64',
1018
+ 'packaging_platform' => 'windows-2012-x64',
943
1019
  'ruby_arch' => 'x64'
944
1020
  },
945
1021
  :vmpooler => {
@@ -948,7 +1024,8 @@ module BeakerHostGenerator
948
1024
  },
949
1025
  'windows2012-6432' => {
950
1026
  :general => {
951
- 'platform' => 'windows-2012-64',
1027
+ 'platform' => 'windows-2012-64',
1028
+ 'packaging_platform' => 'windows-2012-x64',
952
1029
  'ruby_arch' => 'x86'
953
1030
  },
954
1031
  :vmpooler => {
@@ -957,7 +1034,8 @@ module BeakerHostGenerator
957
1034
  },
958
1035
  'windows2012r2-64' => {
959
1036
  :general => {
960
- 'platform' => 'windows-2012r2-64',
1037
+ 'platform' => 'windows-2012r2-64',
1038
+ 'packaging_platform' => 'windows-2012-x64',
961
1039
  'ruby_arch' => 'x64'
962
1040
  },
963
1041
  :vmpooler => {
@@ -966,7 +1044,8 @@ module BeakerHostGenerator
966
1044
  },
967
1045
  'windows2012r2-6432' => {
968
1046
  :general => {
969
- 'platform' => 'windows-2012r2-64',
1047
+ 'platform' => 'windows-2012r2-64',
1048
+ 'packaging_platform' => 'windows-2012-x64',
970
1049
  'ruby_arch' => 'x86'
971
1050
  },
972
1051
  :vmpooler => {
@@ -975,7 +1054,8 @@ module BeakerHostGenerator
975
1054
  },
976
1055
  'windows2012r2_wmf5-64' => {
977
1056
  :general => {
978
- 'platform' => 'windows-2012r2-64',
1057
+ 'platform' => 'windows-2012r2-64',
1058
+ 'packaging_platform' => 'windows-2012-x64',
979
1059
  'ruby_arch' => 'x64'
980
1060
  },
981
1061
  :vmpooler => {
@@ -984,7 +1064,8 @@ module BeakerHostGenerator
984
1064
  },
985
1065
  'windows2012r2_ja-64' => {
986
1066
  :general => {
987
- 'platform' => 'windows-2012r2-64',
1067
+ 'platform' => 'windows-2012r2-64',
1068
+ 'packaging_platform' => 'windows-2012-x64',
988
1069
  'ruby_arch' => 'x64'
989
1070
  },
990
1071
  :vmpooler => {
@@ -993,7 +1074,8 @@ module BeakerHostGenerator
993
1074
  },
994
1075
  'windows2012r2_ja-6432' => {
995
1076
  :general => {
996
- 'platform' => 'windows-2012r2-64',
1077
+ 'platform' => 'windows-2012r2-64',
1078
+ 'packaging_platform' => 'windows-2012-x64',
997
1079
  'ruby_arch' => 'x86'
998
1080
  },
999
1081
  :vmpooler => {
@@ -1002,7 +1084,8 @@ module BeakerHostGenerator
1002
1084
  },
1003
1085
  'windows2016-64' => {
1004
1086
  :general => {
1005
- 'platform' => 'windows-2016-64',
1087
+ 'platform' => 'windows-2016-64',
1088
+ 'packaging_platform' => 'windows-2012-x64',
1006
1089
  'ruby_arch' => 'x64'
1007
1090
  },
1008
1091
  :vmpooler => {
@@ -1011,7 +1094,8 @@ module BeakerHostGenerator
1011
1094
  },
1012
1095
  'windows2016-6432' => {
1013
1096
  :general => {
1014
- 'platform' => 'windows-2016-64',
1097
+ 'platform' => 'windows-2016-64',
1098
+ 'packaging_platform' => 'windows-2012-x64',
1015
1099
  'ruby_arch' => 'x86'
1016
1100
  },
1017
1101
  :vmpooler => {
@@ -1020,7 +1104,8 @@ module BeakerHostGenerator
1020
1104
  },
1021
1105
  'windows7-64' => {
1022
1106
  :general => {
1023
- 'platform' => 'windows-7-64',
1107
+ 'platform' => 'windows-7-64',
1108
+ 'packaging_platform' => 'windows-2012-x64',
1024
1109
  'ruby_arch' => 'x64'
1025
1110
  },
1026
1111
  :vmpooler => {
@@ -1029,7 +1114,8 @@ module BeakerHostGenerator
1029
1114
  },
1030
1115
  'windows8-64' => {
1031
1116
  :general => {
1032
- 'platform' => 'windows-8-64',
1117
+ 'platform' => 'windows-8-64',
1118
+ 'packaging_platform' => 'windows-2012-x64',
1033
1119
  'ruby_arch' => 'x64'
1034
1120
  },
1035
1121
  :vmpooler => {
@@ -1038,7 +1124,8 @@ module BeakerHostGenerator
1038
1124
  },
1039
1125
  'windows81-64' => {
1040
1126
  :general => {
1041
- 'platform' => 'windows-8.1-64',
1127
+ 'platform' => 'windows-8.1-64',
1128
+ 'packaging_platform' => 'windows-2012-x64',
1042
1129
  'ruby_arch' => 'x64'
1043
1130
  },
1044
1131
  :vmpooler => {
@@ -1047,7 +1134,8 @@ module BeakerHostGenerator
1047
1134
  },
1048
1135
  'windowsvista-64' => {
1049
1136
  :general => {
1050
- 'platform' => 'windows-vista-64',
1137
+ 'platform' => 'windows-vista-64',
1138
+ 'packaging_platform' => 'windows-2012-x64',
1051
1139
  'ruby_arch' => 'x64'
1052
1140
  },
1053
1141
  :vmpooler => {
@@ -1056,7 +1144,8 @@ module BeakerHostGenerator
1056
1144
  },
1057
1145
  'windows10ent-32' => {
1058
1146
  :general => {
1059
- 'platform' => 'windows-10ent-32',
1147
+ 'platform' => 'windows-10ent-32',
1148
+ 'packaging_platform' => 'windows-2012-x86',
1060
1149
  'ruby_arch' => 'x86'
1061
1150
  },
1062
1151
  :vmpooler => {
@@ -1065,7 +1154,8 @@ module BeakerHostGenerator
1065
1154
  },
1066
1155
  'windows10ent-64' => {
1067
1156
  :general => {
1068
- 'platform' => 'windows-10ent-64',
1157
+ 'platform' => 'windows-10ent-64',
1158
+ 'packaging_platform' => 'windows-2012-x64',
1069
1159
  'ruby_arch' => 'x64'
1070
1160
  },
1071
1161
  :vmpooler => {
@@ -1074,7 +1164,8 @@ module BeakerHostGenerator
1074
1164
  },
1075
1165
  'windows10pro-64' => {
1076
1166
  :general => {
1077
- 'platform' => 'windows-10pro-64',
1167
+ 'platform' => 'windows-10pro-64',
1168
+ 'packaging_platform' => 'windows-2012-x64',
1078
1169
  'ruby_arch' => 'x64'
1079
1170
  },
1080
1171
  :vmpooler => {
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '1.0.2'
3
+ STRING = '1.1.0'
4
4
  end
5
5
  end
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.0.2
4
+ version: 1.1.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: 2017-08-21 00:00:00.000000000 Z
13
+ date: 2017-09-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest