beaker-hostgenerator 1.18.1 → 2.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.
@@ -13,8 +13,9 @@ module BeakerHostGenerator
13
13
  # `include BeakerHostGenerator::Data` and then `<function>()`.
14
14
  module Data
15
15
  module_function
16
- MAIN_PE_VERSION='2023.0'
17
- PE_TARBALL_SERVER="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local"
16
+
17
+ MAIN_PE_VERSION = '2023.0'
18
+ PE_TARBALL_SERVER = "https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local"
18
19
 
19
20
  def pe_version
20
21
  ENV['pe_version']
@@ -43,7 +44,7 @@ module BeakerHostGenerator
43
44
 
44
45
  pe_family = $1
45
46
  gem_version = Gem::Version.new(pe_family)
46
- if(gem_version < Gem::Version.new("#{MAIN_PE_VERSION}") || version =~ /#{base_regex}-rc\d+\Z/)
47
+ if gem_version < Gem::Version.new("#{MAIN_PE_VERSION}") || version =~ /#{base_regex}-rc\d+\Z/
47
48
  pe_branch = pe_family
48
49
  else
49
50
  pe_branch = 'main'
@@ -56,10 +57,7 @@ module BeakerHostGenerator
56
57
 
57
58
  BASE_CONFIG = {
58
59
  'HOSTS' => {},
59
- 'CONFIG' => {
60
- 'nfs_server' => 'none',
61
- 'consoleport' => 443,
62
- }
60
+ 'CONFIG' => {},
63
61
  }
64
62
 
65
63
  def base_host_config(options)
@@ -88,47 +86,38 @@ module BeakerHostGenerator
88
86
  if release < 31
89
87
  result["fedora#{release}-32"] = {
90
88
  :general => {
91
- 'platform' => "fedora-#{release}-i386"
92
- }
89
+ 'platform' => "fedora-#{release}-i386",
90
+ },
93
91
  }
94
92
  end
95
93
 
96
94
  result["fedora#{release}-64"] = {
97
95
  :general => {
98
- 'platform' => "fedora-#{release}-x86_64"
99
- }
96
+ 'platform' => "fedora-#{release}-x86_64",
97
+ },
100
98
  }
101
99
  end
102
100
 
103
101
  # Ubuntu
104
102
  #
105
103
  # Generate LTS platforms
106
- (14..22).select(&:even?).each do |release|
107
- # 32 bit support was dropped in Ubuntu 18.04
108
- if release < 18
109
- result["ubuntu#{release}04-32"] = {
110
- :general => {
111
- 'platform' => "ubuntu-#{release}.04-i386"
112
- }
113
- }
114
- end
115
-
104
+ (18..22).select(&:even?).each do |release|
116
105
  result["ubuntu#{release}04-64"] = {
117
106
  :general => {
118
- 'platform' => "ubuntu-#{release}.04-amd64"
119
- }
107
+ 'platform' => "ubuntu-#{release}.04-amd64",
108
+ },
120
109
  }
121
110
 
122
111
  result["ubuntu#{release}04-POWER"] = {
123
112
  :general => {
124
- 'platform' => "ubuntu-#{release}.04-ppc64el"
125
- }
113
+ 'platform' => "ubuntu-#{release}.04-ppc64el",
114
+ },
126
115
  }
127
116
 
128
117
  result["ubuntu#{release}04-AARCH64"] = {
129
118
  :general => {
130
- 'platform' => "ubuntu-#{release}.04-aarch64"
131
- }
119
+ 'platform' => "ubuntu-#{release}.04-aarch64",
120
+ },
132
121
  }
133
122
  end
134
123
 
@@ -137,51 +126,44 @@ module BeakerHostGenerator
137
126
  unless release.even?
138
127
  result["ubuntu#{release}04-64"] = {
139
128
  :general => {
140
- 'platform' => "ubuntu-#{release}.04-amd64"
141
- }
129
+ 'platform' => "ubuntu-#{release}.04-amd64",
130
+ },
142
131
  }
143
132
  end
144
133
 
145
134
  result["ubuntu#{release}10-64"] = {
146
135
  :general => {
147
- 'platform' => "ubuntu-#{release}.10-amd64"
148
- }
136
+ 'platform' => "ubuntu-#{release}.10-amd64",
137
+ },
149
138
  }
150
139
  end
151
140
 
152
- result.merge!({
153
- 'aix53-POWER' => {
154
- :general => {
155
- 'platform' => 'aix-5.3-power'
156
- },
157
- :abs => {
158
- 'template' => 'aix-5.3-power'
159
- }
160
- },
161
- 'aix61-POWER' => {
141
+ # FreeBSD
142
+ (12..13).each do |release|
143
+ result["freebsd#{release}-64"] = {
162
144
  :general => {
163
- 'platform' => 'aix-6.1-power'
145
+ 'platform' => "freebsd-#{release}-amd64",
164
146
  },
165
- :abs => {
166
- 'template' => 'aix-6.1-power'
167
- }
168
- },
147
+ }
148
+ end
149
+
150
+ result.merge!({
169
151
  'aix71-POWER' => {
170
152
  :general => {
171
- 'platform' => 'aix-7.1-power'
153
+ 'platform' => 'aix-7.1-power',
172
154
  },
173
155
  :abs => {
174
- 'template' => 'aix-7.1-power'
175
- }
156
+ 'template' => 'aix-7.1-power',
157
+ },
176
158
  },
177
159
  'aix72-POWER' => {
178
160
  :general => {
179
161
  'platform' => 'aix-7.2-power',
180
- 'packaging_platform' => 'aix-7.1-power'
162
+ 'packaging_platform' => 'aix-7.1-power',
181
163
  },
182
164
  :abs => {
183
- 'template' => 'aix-7.2-power'
184
- }
165
+ 'template' => 'aix-7.2-power',
166
+ },
185
167
  },
186
168
  'almalinux8-64' => {
187
169
  :general => {
@@ -190,9 +172,9 @@ module BeakerHostGenerator
190
172
  :docker => {
191
173
  'docker_image_commands' => [
192
174
  'cp /bin/true /sbin/agetty',
193
- 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
194
- ]
195
- }
175
+ 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en',
176
+ ],
177
+ },
196
178
  },
197
179
  'almalinux9-64' => {
198
180
  :general => {
@@ -201,33 +183,33 @@ module BeakerHostGenerator
201
183
  :docker => {
202
184
  'docker_image_commands' => [
203
185
  'cp /bin/true /sbin/agetty',
204
- 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
205
- ]
206
- }
186
+ 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en',
187
+ ],
188
+ },
207
189
  },
208
190
  'amazon6-64' => {
209
191
  :general => {
210
- 'platform' => 'el-6-x86_64'
192
+ 'platform' => 'el-6-x86_64',
211
193
  },
212
194
  :abs => {
213
- 'template' => 'amazon-6-x86_64'
214
- }
195
+ 'template' => 'amazon-6-x86_64',
196
+ },
215
197
  },
216
198
  'amazon7-64' => {
217
199
  :general => {
218
- 'platform' => 'el-7-x86_64'
200
+ 'platform' => 'el-7-x86_64',
219
201
  },
220
202
  :abs => {
221
- 'template' => 'amazon-7-x86_64'
222
- }
203
+ 'template' => 'amazon-7-x86_64',
204
+ },
223
205
  },
224
206
  'amazon7-ARM64' => {
225
207
  :general => {
226
- 'platform' => 'el-7-aarch64'
208
+ 'platform' => 'el-7-aarch64',
227
209
  },
228
210
  :abs => {
229
- 'template' => 'amazon-7-arm64'
230
- }
211
+ 'template' => 'amazon-7-arm64',
212
+ },
231
213
  },
232
214
  'archlinuxrolling-64' => {
233
215
  :general => {
@@ -238,824 +220,367 @@ module BeakerHostGenerator
238
220
  },
239
221
  :docker => {
240
222
  'image' => 'archlinux/archlinux',
241
- }
242
- },
243
- 'arista4-32' => {
244
- :general => {
245
- 'platform' => 'eos-4-i386'
246
223
  },
247
- :vmpooler => {
248
- 'template' => 'arista-4-i386'
249
- }
250
- },
251
- 'centos4-32' => {
252
- :general => {
253
- 'platform' => 'el-4-i386'
254
- }
255
- },
256
- 'centos4-64' => {
257
- :general => {
258
- 'platform' => 'el-4-x86_64'
259
- }
260
- },
261
- 'centos5-32' => {
262
- :general => {
263
- 'platform' => 'el-5-i386'
264
- }
265
- },
266
- 'centos5-64' => {
267
- :general => {
268
- 'platform' => 'el-5-x86_64'
269
- },
270
- :docker => {
271
- 'docker_image_commands' => [
272
- 'cp /bin/true /sbin/mingetty',
273
- 'yum install -y crontabs initscripts iproute openssl sysvinit-tools tar wget which',
274
- 'sed -i -e "/mingetty/d" /etc/inittab'
275
- ]
276
- }
277
- },
278
- 'centos6-32' => {
279
- :general => {
280
- 'platform' => 'el-6-i386'
281
- }
282
- },
283
- 'centos6-64' => {
284
- :general => {
285
- 'platform' => 'el-6-x86_64'
286
- },
287
- :docker => {
288
- 'docker_image_commands' => [
289
- 'cp /bin/true /sbin/mingetty',
290
- 'rm -rf /var/run/network/*',
291
- 'yum install -y crontabs initscripts iproute openssl sysvinit-tools tar wget which',
292
- 'rm /etc/init/tty.conf'
293
- ]
294
- }
295
224
  },
296
225
  'centos7-64' => {
297
226
  :general => {
298
- 'platform' => 'el-7-x86_64'
227
+ 'platform' => 'el-7-x86_64',
299
228
  },
300
229
  :docker => {
301
230
  'docker_image_commands' => [
302
231
  'cp /bin/true /sbin/agetty',
303
- 'yum install -y crontabs initscripts iproute openssl sysvinit-tools tar wget which ss'
304
- ]
305
- }
232
+ 'yum install -y crontabs initscripts iproute openssl sysvinit-tools tar wget which ss',
233
+ ],
234
+ },
306
235
  },
307
236
  'centos8-64' => {
308
237
  :general => {
309
- 'platform' => 'el-8-x86_64'
238
+ 'platform' => 'el-8-x86_64',
310
239
  },
311
240
  :vagrant => {
312
241
  'box' => 'centos/stream8',
242
+ 'box_url' => 'https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-20230501.0.x86_64.vagrant-libvirt.box',
313
243
  },
314
244
  :docker => {
315
245
  'image' => 'quay.io/centos/centos:stream8',
316
246
  'docker_image_commands' => [
317
247
  'cp /bin/true /sbin/agetty',
318
- 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en hostname'
319
- ]
320
- }
321
- },
322
- 'centos9-64' => {
323
- :general => {
324
- 'platform' => 'el-9-x86_64'
325
- },
326
- :docker => {
327
- 'image' => 'quay.io/centos/centos:stream9',
328
- 'docker_image_commands' => [
329
- 'cp /bin/true /sbin/agetty',
330
- 'dnf install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
331
- ]
332
- }
333
- },
334
- # Deprecated
335
- 'cisconx-64' => {
336
- :general => {
337
- 'platform' => 'cisco_nexus-7-x86_64',
338
- 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
339
- 'vrf' => 'management',
340
- 'ssh' => {
341
- 'user' => 'beaker'
342
- }
343
- },
344
- :vmpooler => {
345
- 'template' => 'cisco-nxos-9k-x86_64'
346
- }
347
- },
348
- # Deprecated
349
- 'ciscon7k-64' => {
350
- :general => {
351
- 'platform' => 'cisco_nexus-7k-x86_64',
352
- 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
353
- 'vrf' => 'management',
354
- 'ssh' => {
355
- 'user' => 'admin'
356
- }
357
- },
358
- :abs => {
359
- 'template' => 'cisco-n7k-7k-x86_64'
360
- }
361
- },
362
- # Deprecated
363
- 'cisconxhw-64' => {
364
- :general => {
365
- 'platform' => 'cisco_nexus-7-x86_64',
366
- 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
367
- 'vrf' => 'management',
368
- 'ssh' => {
369
- 'user' => 'devops'
370
- }
371
- },
372
- :abs => {
373
- 'template' => 'cisco-nxos_hw-9k-x86_64'
374
- }
375
- },
376
- 'cisco_n9k-VM' => {
377
- :general => {
378
- 'platform' => 'cisco_nexus-7-x86_64',
379
- 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
380
- 'vrf' => 'management',
381
- 'ssh' => {
382
- 'user' => 'beaker'
383
- }
384
- },
385
- :vmpooler => {
386
- 'template' => 'cisco-nxos-9k-x86_64'
387
- }
388
- },
389
- 'cisco_n7k-HW' => {
390
- :general => {
391
- 'platform' => 'cisco_nexus-7k-x86_64',
392
- 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
393
- 'vrf' => 'management',
394
- 'ssh' => {
395
- 'user' => 'admin'
396
- }
397
- },
398
- :abs => {
399
- 'template' => 'cisco-n7k-x86_64'
400
- }
401
- },
402
- 'cisco_n7k_vdc-HW' => {
403
- :general => {
404
- 'platform' => 'cisco_nexus-7k-x86_64',
405
- 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
406
- 'vrf' => 'management',
407
- 'ssh' => {
408
- 'user' => 'admin'
409
- }
410
- },
411
- :abs => {
412
- 'template' => 'cisco-n7k_vdc-x86_64'
413
- }
414
- },
415
- 'cisco_n9k-HW' => {
416
- :general => {
417
- 'platform' => 'cisco_nexus-7-x86_64',
418
- 'packaging_platform' => 'cisco-wrlinux-5-x86_64',
419
- 'vrf' => 'management',
420
- 'ssh' => {
421
- 'user' => 'devops'
422
- }
423
- },
424
- :abs => {
425
- 'template' => 'cisco-n9k-x86_64'
426
- }
427
- },
428
- 'cisco_ios_c2960-HW' => {
429
- :general => {
430
- 'platform' => 'cisco_ios-12-arm32',
431
- 'ssh' => {
432
- 'user' => 'admin'
433
- }
434
- },
435
- :abs => {
436
- 'template' => 'cisco-ios_c2960-arm'
437
- }
438
- },
439
- 'cisco_ios_c3560-HW' => {
440
- :general => {
441
- 'platform' => 'cisco_ios-12-arm32',
442
- 'ssh' => {
443
- 'user' => 'admin'
444
- }
445
- },
446
- :abs => {
447
- 'template' => 'cisco-ios_c3560-arm'
448
- }
449
- },
450
- 'cisco_ios_c3750-HW' => {
451
- :general => {
452
- 'platform' => 'cisco_ios-12-arm32',
453
- 'ssh' => {
454
- 'user' => 'admin'
455
- }
456
- },
457
- :abs => {
458
- 'template' => 'cisco-ios_c3750-arm'
459
- }
460
- },
461
- 'cisco_ios_c4507r-HW' => {
462
- :general => {
463
- 'platform' => 'cisco_ios-12-arm32',
464
- 'ssh' => {
465
- 'user' => 'admin'
466
- }
467
- },
468
- :abs => {
469
- 'template' => 'cisco-ios_c4507r-arm'
470
- }
471
- },
472
- 'cisco_ios_c4948-HW' => {
473
- :general => {
474
- 'platform' => 'cisco_ios-12-arm32',
475
- 'ssh' => {
476
- 'user' => 'admin'
477
- }
478
- },
479
- :abs => {
480
- 'template' => 'cisco-ios_c4948-arm'
481
- }
482
- },
483
- 'cisco_ios_c6503-HW' => {
484
- :general => {
485
- 'platform' => 'cisco_ios-12-arm32',
486
- 'ssh' => {
487
- 'user' => 'admin'
488
- }
489
- },
490
- :abs => {
491
- 'template' => 'cisco-ios_c6503-arm'
492
- }
493
- },
494
- 'cisco_iosxe_c3650-HW' => {
495
- :general => {
496
- 'platform' => 'cisco_iosxec3650-arm32',
497
- 'ssh' => {
498
- 'user' => 'admin'
499
- }
500
- },
501
- :abs => {
502
- 'template' => 'cisco-iosxe_c3650-arm'
503
- }
504
- },
505
- 'cisco_iosxe_c4503-HW' => {
506
- :general => {
507
- 'platform' => 'cisco_iosxe-3-arm32',
508
- 'ssh' => {
509
- 'user' => 'admin'
510
- }
511
- },
512
- :abs => {
513
- 'template' => 'cisco-iosxe_c4503-arm'
514
- }
515
- },
516
- 'cisco_xr_9k-VM' => {
517
- :general => {
518
- 'platform' => 'cisco_ios_xr-6-x86_64',
519
- 'packaging_platform' => 'cisco-wrlinux-7-x86_64'
520
- },
521
- :vmpooler => {
522
- 'template' => 'cisco-exr-9k-x86_64'
523
- }
524
- },
525
- 'cumulus25-64' => {
526
- :general => {
527
- 'platform' => 'cumulus-2.5-x86_64',
528
- 'packaging_platform' => 'cumulus-2.2-amd64'
529
- },
530
- :vmpooler => {
531
- 'template' => 'cumulus-vx-25-x86_64'
532
- }
533
- },
534
- 'debian6-32' => {
535
- :general => {
536
- 'platform' => 'debian-6-i386'
537
- },
538
- :vmpooler => {
539
- 'template' => 'debian-6-i386'
540
- }
541
- },
542
- 'debian6-64' => {
543
- :general => {
544
- 'platform' => 'debian-6-amd64'
545
- },
546
- :vmpooler => {
547
- 'template' => 'debian-6-x86_64'
548
- }
549
- },
550
- 'debian7-32' => {
551
- :general => {
552
- 'platform' => 'debian-7-i386'
553
- },
554
- :vmpooler => {
555
- 'template' => 'debian-7-i386'
556
- }
557
- },
558
- 'debian7-64' => {
559
- :general => {
560
- 'platform' => 'debian-7-amd64'
561
- },
562
- :docker => {
563
- 'docker_image_commands' => [
564
- 'cp /bin/true /sbin/getty',
565
- 'apt-get update && apt-get install -y cron locales-all net-tools wget'
248
+ 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en hostname',
566
249
  ],
567
250
  },
568
- :vagrant => {
569
- 'box' => 'debian/wheezy64',
570
- },
571
- :vmpooler => {
572
- 'template' => 'debian-7-x86_64'
573
- }
574
251
  },
575
- 'debian8-32' => {
576
- :general => {
577
- 'platform' => 'debian-8-i386'
578
- },
579
- :vmpooler => {
580
- 'template' => 'debian-8-i386'
581
- }
582
- },
583
- 'debian8-64' => {
252
+ 'centos9-64' => {
584
253
  :general => {
585
- 'platform' => 'debian-8-amd64'
586
- },
587
- :docker => {
588
- 'docker_image_commands' => [
589
- 'cp /bin/true /sbin/agetty',
590
- 'rm -f /usr/sbin/policy-rc.d',
591
- 'apt-get update && apt-get install -y cron locales-all net-tools wget apt-transport-https'
592
- ]
254
+ 'platform' => 'el-9-x86_64',
593
255
  },
594
256
  :vagrant => {
595
- 'box' => 'debian/jessie64',
596
- },
597
- :vmpooler => {
598
- 'template' => 'debian-8-x86_64'
599
- }
600
- },
601
- 'debian9-32' => {
602
- :general => {
603
- 'platform' => 'debian-9-i386'
604
- },
605
- :vmpooler => {
606
- 'template' => 'debian-9-i386'
607
- },
608
- :docker => {
609
- 'docker_image_commands' => [
610
- 'cp /bin/true /sbin/agetty',
611
- 'rm -f /usr/sbin/policy-rc.d',
612
- 'apt-get update && apt-get install -y cron locales-all net-tools wget apt-transport-https'
613
- ]
614
- }
615
- },
616
- 'debian9-64' => {
617
- :general => {
618
- 'platform' => 'debian-9-amd64'
257
+ 'box' => 'centos/stream9',
258
+ 'box_url' => 'https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-20230410.0.x86_64.vagrant-libvirt.box',
619
259
  },
620
260
  :docker => {
261
+ 'image' => 'quay.io/centos/centos:stream9',
621
262
  'docker_image_commands' => [
622
263
  'cp /bin/true /sbin/agetty',
623
- 'rm -f /usr/sbin/policy-rc.d',
624
- 'apt-get update && apt-get install -y cron locales-all net-tools wget systemd-sysv gnupg apt-transport-https'
625
- ]
626
- },
627
- :vagrant => {
628
- 'box' => 'debian/stretch64',
264
+ 'dnf install -y crontabs initscripts iproute openssl wget which glibc-langpack-en hostname',
265
+ ],
629
266
  },
630
- :vmpooler => {
631
- 'template' => 'debian-9-x86_64'
632
- }
633
267
  },
634
268
  'debian10-64' => {
635
269
  :general => {
636
- 'platform' => 'debian-10-amd64'
270
+ 'platform' => 'debian-10-amd64',
637
271
  },
638
272
  :docker => {
639
273
  'docker_image_commands' => [
640
274
  'cp /bin/true /sbin/agetty',
641
275
  'rm -f /usr/sbin/policy-rc.d',
642
- 'apt-get update && apt-get install -y cron locales-all net-tools wget gnupg'
643
- ]
276
+ 'apt-get update && apt-get install -y cron locales-all net-tools wget gnupg',
277
+ ],
644
278
  },
645
279
  :vagrant => {
646
280
  'box' => 'debian/buster64',
647
281
  },
648
282
  :vmpooler => {
649
- 'template' => 'debian-10-x86_64'
650
- }
283
+ 'template' => 'debian-10-x86_64',
284
+ },
651
285
  },
652
286
  'debian10-32' => {
653
287
  :general => {
654
- 'platform' => 'debian-10-i386'
288
+ 'platform' => 'debian-10-i386',
655
289
  },
656
290
  :docker => {
657
291
  'docker_image_commands' => [
658
292
  'cp /bin/true /sbin/agetty',
659
293
  'rm -f /usr/sbin/policy-rc.d',
660
- 'apt-get update && apt-get install -y cron locales-all net-tools wget gnupg'
661
- ]
294
+ 'apt-get update && apt-get install -y cron locales-all net-tools wget gnupg',
295
+ ],
662
296
  },
663
297
  :vmpooler => {
664
- 'template' => 'debian-10-i386'
665
- }
298
+ 'template' => 'debian-10-i386',
299
+ },
666
300
  },
667
301
  'debian11-64' => {
668
302
  :general => {
669
- 'platform' => 'debian-11-amd64'
303
+ 'platform' => 'debian-11-amd64',
670
304
  },
671
305
  :docker => {
672
306
  'docker_image_commands' => [
673
307
  'cp /bin/true /sbin/agetty',
674
308
  'rm -f /usr/sbin/policy-rc.d',
675
- 'apt-get update && apt-get install -y cron locales-all net-tools wget gnupg iproute2'
676
- ]
309
+ 'apt-get update && apt-get install -y cron locales-all net-tools wget gnupg iproute2',
310
+ ],
677
311
  },
678
312
  :vagrant => {
679
313
  'box' => 'debian/bullseye64',
680
314
  },
681
315
  :vmpooler => {
682
- 'template' => 'debian-11-x86_64'
683
- }
684
- },
685
- 'fedora14-32' => {
686
- :general => {
687
- 'platform' => 'fedora-14-i386'
688
- }
689
- },
690
- 'huaweios6-POWER' => {
691
- :general => {
692
- 'platform' => 'huaweios-6-powerpc'
316
+ 'template' => 'debian-11-x86_64',
693
317
  },
694
- :abs => {
695
- 'template' => 'huaweios-6-powerpc'
696
- }
697
318
  },
698
319
  'panos61-64' => {
699
320
  :general => {
700
- 'platform' => 'palo-alto-6.1.0-x86_64'
321
+ 'platform' => 'palo-alto-6.1.0-x86_64',
701
322
  },
702
323
  :vmpooler => {
703
- 'template' => 'palo-alto-6.1.0-x86_64'
704
- }
324
+ 'template' => 'palo-alto-6.1.0-x86_64',
325
+ },
705
326
  },
706
327
  'panos71-64' => {
707
328
  :general => {
708
- 'platform' => 'palo-alto-7.1.0-x86_64'
329
+ 'platform' => 'palo-alto-7.1.0-x86_64',
709
330
  },
710
331
  :vmpooler => {
711
- 'template' => 'palo-alto-7.1.0-x86_64'
712
- }
332
+ 'template' => 'palo-alto-7.1.0-x86_64',
333
+ },
713
334
  },
714
335
  'panos81-64' => {
715
336
  :general => {
716
- 'platform' => 'palo-alto-8.1.0-x86_64'
337
+ 'platform' => 'palo-alto-8.1.0-x86_64',
717
338
  },
718
339
  :vmpooler => {
719
- 'template' => 'palo-alto-8.1.0-x86_64'
720
- }
721
- },
722
- 'opensuse11-32' => {
723
- :general => {
724
- 'platform' => 'opensuse-11-i386'
340
+ 'template' => 'palo-alto-8.1.0-x86_64',
725
341
  },
726
- :vmpooler => {
727
- 'template' => 'opensuse-11-i386'
728
- }
729
- },
730
- 'opensuse11-64' => {
731
- :general => {
732
- 'platform' => 'opensuse-11-x86_64'
733
- },
734
- :vmpooler => {
735
- 'template' => 'opensuse-11-x86_64'
736
- }
737
342
  },
738
343
  'opensuse15-32' => {
739
344
  :general => {
740
- 'platform' => 'opensuse-15-i386'
345
+ 'platform' => 'opensuse-15-i386',
741
346
  },
742
347
  :docker => {
743
348
  'docker_image_commands' => [
744
349
  'cp /bin/true /sbin/agetty',
745
- 'zypper install -y cron iproute2 tar wget which'
746
- ]
350
+ 'zypper install -y cron iproute2 tar wget which',
351
+ ],
747
352
  },
748
353
  :vmpooler => {
749
- 'template' => 'opensuse-15-i386'
750
- }
354
+ 'template' => 'opensuse-15-i386',
355
+ },
751
356
  },
752
357
  'opensuse15-64' => {
753
358
  :general => {
754
- 'platform' => 'opensuse-15-x86_64'
359
+ 'platform' => 'opensuse-15-x86_64',
755
360
  },
756
361
  :docker => {
757
362
  'docker_image_commands' => [
758
363
  'cp /bin/true /sbin/agetty',
759
- 'zypper install -y cron iproute2 tar wget which'
760
- ]
364
+ 'zypper install -y cron iproute2 tar wget which',
365
+ ],
761
366
  },
762
367
  :vmpooler => {
763
- 'template' => 'opensuse-15-x86_64'
764
- }
368
+ 'template' => 'opensuse-15-x86_64',
369
+ },
765
370
  },
766
371
  'opensuse42-32' => {
767
372
  :general => {
768
- 'platform' => 'opensuse-42-i386'
373
+ 'platform' => 'opensuse-42-i386',
769
374
  },
770
375
  :docker => {
771
376
  'docker_image_commands' => [
772
377
  'cp /bin/true /sbin/agetty',
773
- 'zypper install -y cron iproute2 tar wget which'
774
- ]
378
+ 'zypper install -y cron iproute2 tar wget which',
379
+ ],
775
380
  },
776
381
  :vmpooler => {
777
- 'template' => 'opensuse-42-i386'
778
- }
382
+ 'template' => 'opensuse-42-i386',
383
+ },
779
384
  },
780
385
  'opensuse42-64' => {
781
386
  :general => {
782
- 'platform' => 'opensuse-42-x86_64'
387
+ 'platform' => 'opensuse-42-x86_64',
783
388
  },
784
389
  :docker => {
785
390
  'docker_image_commands' => [
786
391
  'cp /bin/true /sbin/agetty',
787
- 'zypper install -y cron iproute2 tar wget which'
788
- ]
789
- },
790
- :vmpooler => {
791
- 'template' => 'opensuse-42-x86_64'
792
- }
793
- },
794
- 'oracle5-32' => {
795
- :general => {
796
- 'platform' => 'el-5-i386'
392
+ 'zypper install -y cron iproute2 tar wget which',
393
+ ],
797
394
  },
798
395
  :vmpooler => {
799
- 'template' => 'oracle-5-i386'
800
- }
801
- },
802
- 'oracle5-64' => {
803
- :general => {
804
- 'platform' => 'el-5-x86_64'
396
+ 'template' => 'opensuse-42-x86_64',
805
397
  },
806
- :vmpooler => {
807
- 'template' => 'oracle-5-x86_64'
808
- }
809
398
  },
810
399
  'oracle6-32' => {
811
400
  :general => {
812
- 'platform' => 'el-6-i386'
813
- },
814
- :vmpooler => {
815
- 'template' => 'oracle-6-i386'
816
- }
817
- },
818
- 'oracle6-64' => {
819
- :general => {
820
- 'platform' => 'el-6-x86_64'
821
- },
822
- :vmpooler => {
823
- 'template' => 'oracle-6-x86_64'
824
- }
825
- },
826
- 'oracle7-64' => {
827
- :general => {
828
- 'platform' => 'el-7-x86_64'
829
- },
830
- :vmpooler => {
831
- 'template' => 'oracle-7-x86_64'
832
- }
833
- },
834
- 'osx109-64' => {
835
- :general => {
836
- 'platform' => 'osx-10.9-x86_64'
837
- },
838
- :vmpooler => {
839
- 'template' => 'osx-109-x86_64'
840
- }
841
- },
842
- 'osx1010-64' => {
843
- :general => {
844
- 'platform' => 'osx-10.10-x86_64'
845
- },
846
- :vmpooler => {
847
- 'template' => 'osx-1010-x86_64'
848
- }
849
- },
850
- 'osx1011-64' => {
851
- :general => {
852
- 'platform' => 'osx-10.11-x86_64'
401
+ 'platform' => 'el-6-i386',
853
402
  },
854
403
  :vmpooler => {
855
- 'template' => 'osx-1011-x86_64'
856
- }
857
- },
858
- 'osx1012-64' => {
859
- :general => {
860
- 'platform' => 'osx-10.12-x86_64'
404
+ 'template' => 'oracle-6-i386',
861
405
  },
862
- :vmpooler => {
863
- 'template' => 'osx-1012-x86_64'
864
- }
865
406
  },
866
- 'osx1013-64' => {
407
+ 'oracle6-64' => {
867
408
  :general => {
868
- 'platform' => 'osx-10.13-x86_64'
409
+ 'platform' => 'el-6-x86_64',
869
410
  },
870
411
  :vmpooler => {
871
- 'template' => 'osx-1013-x86_64'
872
- }
412
+ 'template' => 'oracle-6-x86_64',
413
+ },
873
414
  },
874
- 'osx1014-64' => {
415
+ 'oracle7-64' => {
875
416
  :general => {
876
- 'platform' => 'osx-10.14-x86_64'
417
+ 'platform' => 'el-7-x86_64',
877
418
  },
878
419
  :vmpooler => {
879
- 'template' => 'osx-1014-x86_64'
880
- }
420
+ 'template' => 'oracle-7-x86_64',
421
+ },
881
422
  },
882
423
  'osx1015-64' => {
883
424
  :general => {
884
- 'platform' => 'osx-10.15-x86_64'
425
+ 'platform' => 'osx-10.15-x86_64',
885
426
  },
886
427
  :vmpooler => {
887
- 'template' => 'osx-1015-x86_64'
888
- }
428
+ 'template' => 'osx-1015-x86_64',
429
+ },
889
430
  },
890
431
  'osx11-64' => {
891
432
  :general => {
892
- 'platform' => 'osx-11-x86_64'
433
+ 'platform' => 'osx-11-x86_64',
893
434
  },
894
435
  :vmpooler => {
895
- 'template' => 'macos-112-x86_64'
896
- }
436
+ 'template' => 'macos-112-x86_64',
437
+ },
897
438
  },
898
439
  'osx11-ARM64' => {
899
440
  :general => {
900
- 'platform' => 'osx-11-arm64'
441
+ 'platform' => 'osx-11-arm64',
901
442
  },
902
443
  :vmpooler => {
903
- 'template' => 'macos-11-arm64'
904
- }
444
+ 'template' => 'macos-11-arm64',
445
+ },
905
446
  },
906
447
  'osx12-64' => {
907
448
  :general => {
908
- 'platform' => 'osx-12-x86_64'
449
+ 'platform' => 'osx-12-x86_64',
909
450
  },
910
451
  :vmpooler => {
911
- 'template' => 'macos-12-x86_64'
912
- }
452
+ 'template' => 'macos-12-x86_64',
453
+ },
913
454
  },
914
455
  'osx12-ARM64' => {
915
456
  :general => {
916
- 'platform' => 'osx-12-arm64'
457
+ 'platform' => 'osx-12-arm64',
917
458
  },
918
459
  :vmpooler => {
919
- 'template' => 'macos-12-arm64'
920
- }
921
- },
922
- 'redhat4-32' => {
923
- :general => {
924
- 'platform' => 'el-4-i386'
460
+ 'template' => 'macos-12-arm64',
925
461
  },
926
- :vmpooler => {
927
- 'template' => 'redhat-4-i386'
928
- }
929
462
  },
930
- 'redhat4-64' => {
463
+ 'osx13-64' => {
931
464
  :general => {
932
- 'platform' => 'el-4-x86_64'
465
+ 'platform' => 'osx-13-x86_64',
933
466
  },
934
467
  :vmpooler => {
935
- 'template' => 'redhat-4-x86_64'
936
- }
937
- },
938
- 'redhat5-32' => {
939
- :general => {
940
- 'platform' => 'el-5-i386'
468
+ 'template' => 'macos-13-x86_64',
941
469
  },
942
- :vmpooler => {
943
- 'template' => 'redhat-5-i386'
944
- }
945
470
  },
946
- 'redhat5-64' => {
471
+ 'osx13-ARM64' => {
947
472
  :general => {
948
- 'platform' => 'el-5-x86_64'
473
+ 'platform' => 'osx-13-arm64',
949
474
  },
950
475
  :vmpooler => {
951
- 'template' => 'redhat-5-x86_64'
952
- }
476
+ 'template' => 'macos-13-arm64',
477
+ },
953
478
  },
954
479
  'redhat6-32' => {
955
480
  :general => {
956
481
  'platform' => 'el-6-i386',
957
482
  },
958
483
  :vmpooler => {
959
- 'template' => 'redhat-6-i386'
960
- }
484
+ 'template' => 'redhat-6-i386',
485
+ },
961
486
  },
962
487
  'redhat6-64' => {
963
488
  :general => {
964
- 'platform' => 'el-6-x86_64'
489
+ 'platform' => 'el-6-x86_64',
965
490
  },
966
491
  :vmpooler => {
967
- 'template' => 'redhat-6-x86_64'
968
- }
492
+ 'template' => 'redhat-6-x86_64',
493
+ },
969
494
  },
970
495
  'redhat6-S390X' => {
971
496
  :general => {
972
- 'platform' => 'el-6-s390x'
497
+ 'platform' => 'el-6-s390x',
973
498
  },
974
499
  },
975
500
  'redhat7-64' => {
976
501
  :general => {
977
- 'platform' => 'el-7-x86_64'
502
+ 'platform' => 'el-7-x86_64',
978
503
  },
979
504
  :vmpooler => {
980
- 'template' => 'redhat-7-x86_64'
981
- }
505
+ 'template' => 'redhat-7-x86_64',
506
+ },
982
507
  },
983
508
  'redhatfips7-64' => {
984
509
  :general => {
985
510
  'platform' => 'el-7-x86_64',
986
- 'packaging_platform' => 'redhatfips-7-x86_64'
511
+ 'packaging_platform' => 'redhatfips-7-x86_64',
987
512
  },
988
513
  :vmpooler => {
989
- 'template' => 'redhat-fips-7-x86_64'
990
- }
514
+ 'template' => 'redhat-fips-7-x86_64',
515
+ },
991
516
  },
992
517
  'redhat7-POWER' => {
993
518
  :general => {
994
519
  'platform' => 'el-7-ppc64le',
995
520
  },
996
521
  :abs => {
997
- 'template' => 'redhat-7.3-power8'
998
- }
522
+ 'template' => 'redhat-7.3-power8',
523
+ },
999
524
  },
1000
525
  'redhat7-S390X' => {
1001
526
  :general => {
1002
- 'platform' => 'el-7-s390x'
527
+ 'platform' => 'el-7-s390x',
1003
528
  },
1004
529
  },
1005
530
  'redhat7-AARCH64' => {
1006
531
  :general => {
1007
- 'platform' => 'el-7-aarch64'
532
+ 'platform' => 'el-7-aarch64',
1008
533
  },
1009
534
  :abs => {
1010
- 'template' => 'centos-7-arm64'
535
+ 'template' => 'centos-7-arm64',
1011
536
  },
1012
537
  :vmpooler => {
1013
- 'template' => 'redhat-7-x86_64'
1014
- }
538
+ 'template' => 'redhat-7-x86_64',
539
+ },
1015
540
  },
1016
541
  'redhat8-64' => {
1017
542
  :general => {
1018
- 'platform' => 'el-8-x86_64'
543
+ 'platform' => 'el-8-x86_64',
1019
544
  },
1020
545
  :vmpooler => {
1021
- 'template' => 'redhat-8-x86_64'
1022
- }
546
+ 'template' => 'redhat-8-x86_64',
547
+ },
1023
548
  },
1024
549
  'redhatfips8-64' => {
1025
550
  :general => {
1026
551
  'platform' => 'el-8-x86_64',
1027
- 'packaging_platform' => 'redhatfips-8-x86_64'
552
+ 'packaging_platform' => 'redhatfips-8-x86_64',
1028
553
  },
1029
554
  :vmpooler => {
1030
- 'template' => 'redhat-fips-8-x86_64'
1031
- }
555
+ 'template' => 'redhat-fips-8-x86_64',
556
+ },
1032
557
  },
1033
558
  'redhat8-AARCH64' => {
1034
559
  :general => {
1035
- 'platform' => 'el-8-aarch64'
560
+ 'platform' => 'el-8-aarch64',
1036
561
  },
1037
562
  :abs => {
1038
- 'template' => 'redhat-8-arm64'
563
+ 'template' => 'redhat-8-arm64',
1039
564
  },
1040
565
  :vmpooler => {
1041
- 'template' => 'redhat-8-x86_64'
1042
- }
566
+ 'template' => 'redhat-8-x86_64',
567
+ },
1043
568
  },
1044
569
  'redhat8-POWER' => {
1045
570
  :general => {
1046
- 'platform' => 'el-8-ppc64le'
571
+ 'platform' => 'el-8-ppc64le',
1047
572
  },
1048
573
  :abs => {
1049
- 'template' => 'redhat-8-power8'
1050
- }
574
+ 'template' => 'redhat-8-power8',
575
+ },
1051
576
  },
1052
577
  'redhat9-64' => {
1053
578
  :general => {
1054
- 'platform' => 'el-9-x86_64'
579
+ 'platform' => 'el-9-x86_64',
1055
580
  },
1056
581
  :vmpooler => {
1057
- 'template' => 'redhat-9-x86_64'
1058
- }
582
+ 'template' => 'redhat-9-x86_64',
583
+ },
1059
584
  },
1060
585
  'rocky8-64' => {
1061
586
  :general => {
@@ -1064,9 +589,9 @@ module BeakerHostGenerator
1064
589
  :docker => {
1065
590
  'docker_image_commands' => [
1066
591
  'cp /bin/true /sbin/agetty',
1067
- 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
1068
- ]
1069
- }
592
+ 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en',
593
+ ],
594
+ },
1070
595
  },
1071
596
  'rocky9-64' => {
1072
597
  :general => {
@@ -1075,686 +600,618 @@ module BeakerHostGenerator
1075
600
  :docker => {
1076
601
  'docker_image_commands' => [
1077
602
  'cp /bin/true /sbin/agetty',
1078
- 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
1079
- ]
1080
- }
1081
- },
1082
- 'scientific5-32' => {
1083
- :general => {
1084
- 'platform' => 'el-5-i386'
1085
- },
1086
- :vmpooler => {
1087
- 'template' => 'scientific-5-i386'
1088
- }
1089
- },
1090
- 'scientific5-64' => {
1091
- :general => {
1092
- 'platform' => 'el-5-x86_64'
1093
- },
1094
- :vmpooler => {
1095
- 'template' => 'scientific-5-x86_64'
1096
- }
1097
- },
1098
- 'scientific6-32' => {
1099
- :general => {
1100
- 'platform' => 'el-6-i386'
1101
- },
1102
- :vmpooler => {
1103
- 'template' => 'scientific-6-i386'
1104
- }
1105
- },
1106
- 'scientific6-64' => {
1107
- :general => {
1108
- 'platform' => 'el-6-x86_64'
603
+ 'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en',
604
+ ],
1109
605
  },
1110
- :vmpooler => {
1111
- 'template' => 'scientific-6-x86_64'
1112
- }
1113
606
  },
1114
607
  'scientific7-64' => {
1115
608
  :general => {
1116
- 'platform' => 'el-7-x86_64'
609
+ 'platform' => 'el-7-x86_64',
1117
610
  },
1118
611
  :vmpooler => {
1119
- 'template' => 'scientific-7-x86_64'
1120
- }
1121
- },
1122
- 'sles10-32' => {
1123
- :general => {
1124
- 'platform' => 'sles-10-i386'
1125
- },
1126
- :vmpooler => {
1127
- 'template' => 'sles-10-i386'
1128
- }
1129
- },
1130
- 'sles10-64' => {
1131
- :general => {
1132
- 'platform' => 'sles-10-x86_64'
612
+ 'template' => 'scientific-7-x86_64',
1133
613
  },
1134
- :vmpooler => {
1135
- 'template' => 'sles-10-x86_64'
1136
- }
1137
614
  },
1138
615
  'sles11-32' => {
1139
616
  :general => {
1140
- 'platform' => 'sles-11-i386'
617
+ 'platform' => 'sles-11-i386',
1141
618
  },
1142
619
  :vmpooler => {
1143
- 'template' => 'sles-11-i386'
1144
- }
620
+ 'template' => 'sles-11-i386',
621
+ },
1145
622
  },
1146
623
  'sles11-64' => {
1147
624
  :general => {
1148
- 'platform' => 'sles-11-x86_64'
625
+ 'platform' => 'sles-11-x86_64',
1149
626
  },
1150
627
  :vmpooler => {
1151
- 'template' => 'sles-11-x86_64'
1152
- }
628
+ 'template' => 'sles-11-x86_64',
629
+ },
1153
630
  },
1154
631
  'sles11-S390X' => {
1155
632
  :general => {
1156
- 'platform' => 'sles-11-s390x'
633
+ 'platform' => 'sles-11-s390x',
1157
634
  },
1158
635
  },
1159
636
  'sles12-64' => {
1160
637
  :general => {
1161
- 'platform' => 'sles-12-x86_64'
638
+ 'platform' => 'sles-12-x86_64',
1162
639
  },
1163
640
  :vmpooler => {
1164
- 'template' => 'sles-12-x86_64'
1165
- }
641
+ 'template' => 'sles-12-x86_64',
642
+ },
1166
643
  },
1167
644
  'sles12-S390X' => {
1168
645
  :general => {
1169
- 'platform' => 'sles-12-s390x'
1170
- }
646
+ 'platform' => 'sles-12-s390x',
647
+ },
1171
648
  },
1172
649
  'sles12-POWER' => {
1173
650
  :general => {
1174
- 'platform' => 'sles-12-ppc64le'
651
+ 'platform' => 'sles-12-ppc64le',
1175
652
  },
1176
653
  :abs => {
1177
- 'template' => 'sles-12-power8'
1178
- }
654
+ 'template' => 'sles-12-power8',
655
+ },
1179
656
  },
1180
657
  'sles15-64' => {
1181
658
  :general => {
1182
- 'platform' => 'sles-15-x86_64'
659
+ 'platform' => 'sles-15-x86_64',
1183
660
  },
1184
661
  :vmpooler => {
1185
- 'template' => 'sles-15-x86_64'
1186
- }
662
+ 'template' => 'sles-15-x86_64',
663
+ },
1187
664
  },
1188
665
  'solaris10-32' => {
1189
666
  :general => {
1190
- 'platform' => 'solaris-10-i386'
667
+ 'platform' => 'solaris-10-i386',
1191
668
  },
1192
669
  :vmpooler => {
1193
- 'template' => 'solaris-10-x86_64'
1194
- }
670
+ 'template' => 'solaris-10-x86_64',
671
+ },
1195
672
  },
1196
673
  'solaris10-64' => {
1197
674
  :general => {
1198
- 'platform' => 'solaris-10-i386'
675
+ 'platform' => 'solaris-10-i386',
1199
676
  },
1200
677
  :vmpooler => {
1201
- 'template' => 'solaris-10-x86_64'
1202
- }
678
+ 'template' => 'solaris-10-x86_64',
679
+ },
1203
680
  },
1204
681
  'solaris10-SPARC' => {
1205
682
  :general => {
1206
- 'platform' => 'solaris-10-sparc'
683
+ 'platform' => 'solaris-10-sparc',
1207
684
  },
1208
685
  :abs => {
1209
- 'template' => 'solaris-10-sparc'
1210
- }
686
+ 'template' => 'solaris-10-sparc',
687
+ },
1211
688
  },
1212
689
  'solaris11-32' => {
1213
690
  :general => {
1214
- 'platform' => 'solaris-11-i386'
691
+ 'platform' => 'solaris-11-i386',
1215
692
  },
1216
693
  :vmpooler => {
1217
- 'template' => 'solaris-11-x86_64'
1218
- }
694
+ 'template' => 'solaris-11-x86_64',
695
+ },
1219
696
  },
1220
697
  'solaris11-64' => {
1221
698
  :general => {
1222
- 'platform' => 'solaris-11-i386'
699
+ 'platform' => 'solaris-11-i386',
1223
700
  },
1224
701
  :vmpooler => {
1225
- 'template' => 'solaris-11-x86_64'
1226
- }
702
+ 'template' => 'solaris-11-x86_64',
703
+ },
1227
704
  },
1228
705
  'solaris11-SPARC' => {
1229
706
  :general => {
1230
- 'platform' => 'solaris-11-sparc'
707
+ 'platform' => 'solaris-11-sparc',
1231
708
  },
1232
709
  :abs => {
1233
- 'template' => 'solaris-11-sparc'
1234
- }
710
+ 'template' => 'solaris-11-sparc',
711
+ },
1235
712
  },
1236
713
  'solaris112-32' => {
1237
714
  :general => {
1238
715
  'platform' => 'solaris-11.2-i386',
1239
- 'packaging_platform' => 'solaris-11-i386'
716
+ 'packaging_platform' => 'solaris-11-i386',
1240
717
  },
1241
718
  :vmpooler => {
1242
- 'template' => 'solaris-112-x86_64'
1243
- }
719
+ 'template' => 'solaris-112-x86_64',
720
+ },
1244
721
  },
1245
722
  'solaris112-64' => {
1246
723
  :general => {
1247
724
  'platform' => 'solaris-11.2-i386',
1248
- 'packaging_platform' => 'solaris-11-i386'
725
+ 'packaging_platform' => 'solaris-11-i386',
1249
726
  },
1250
727
  :vmpooler => {
1251
- 'template' => 'solaris-112-x86_64'
1252
- }
728
+ 'template' => 'solaris-112-x86_64',
729
+ },
1253
730
  },
1254
731
  'solaris114-32' => {
1255
732
  :general => {
1256
733
  'platform' => 'solaris-11.4-i386',
1257
- 'packaging_platform' => 'solaris-11-i386'
734
+ 'packaging_platform' => 'solaris-11-i386',
1258
735
  },
1259
736
  :vmpooler => {
1260
- 'template' => 'solaris-114-x86_64'
1261
- }
737
+ 'template' => 'solaris-114-x86_64',
738
+ },
1262
739
  },
1263
740
  'solaris114-64' => {
1264
741
  :general => {
1265
742
  'platform' => 'solaris-11.4-i386',
1266
- 'packaging_platform' => 'solaris-11-i386'
743
+ 'packaging_platform' => 'solaris-11-i386',
1267
744
  },
1268
745
  :vmpooler => {
1269
- 'template' => 'solaris-114-x86_64'
1270
- }
746
+ 'template' => 'solaris-114-x86_64',
747
+ },
1271
748
  },
1272
749
  'vro6-64' => {
1273
750
  :general => {
1274
- 'platform' => 'sles-11-x86_64'
751
+ 'platform' => 'sles-11-x86_64',
1275
752
  },
1276
753
  :vmpooler => {
1277
- 'template' => 'vro-6-x86_64'
1278
- }
754
+ 'template' => 'vro-6-x86_64',
755
+ },
1279
756
  },
1280
757
  'vro7-64' => {
1281
758
  :general => {
1282
- 'platform' => 'sles-11-x86_64'
759
+ 'platform' => 'sles-11-x86_64',
1283
760
  },
1284
761
  :vmpooler => {
1285
- 'template' => 'vro-7-x86_64'
1286
- }
762
+ 'template' => 'vro-7-x86_64',
763
+ },
1287
764
  },
1288
765
  'vro71-64' => {
1289
766
  :general => {
1290
- 'platform' => 'sles-11-x86_64'
767
+ 'platform' => 'sles-11-x86_64',
1291
768
  },
1292
769
  :vmpooler => {
1293
- 'template' => 'vro-71-x86_64'
1294
- }
770
+ 'template' => 'vro-71-x86_64',
771
+ },
1295
772
  },
1296
773
  'vro73-64' => {
1297
774
  :general => {
1298
- 'platform' => 'sles-11-x86_64'
775
+ 'platform' => 'sles-11-x86_64',
1299
776
  },
1300
777
  :vmpooler => {
1301
- 'template' => 'vro-73-x86_64'
1302
- }
778
+ 'template' => 'vro-73-x86_64',
779
+ },
1303
780
  },
1304
781
  'vro74-64' => {
1305
782
  :general => {
1306
- 'platform' => 'sles-11-x86_64'
783
+ 'platform' => 'sles-11-x86_64',
1307
784
  },
1308
785
  :vmpooler => {
1309
- 'template' => 'vro-74-x86_64'
1310
- }
786
+ 'template' => 'vro-74-x86_64',
787
+ },
1311
788
  },
1312
789
  'windows2008-64' => {
1313
790
  :general => {
1314
791
  'platform' => 'windows-2008-64',
1315
792
  'packaging_platform' => 'windows-2012-x64',
1316
- 'ruby_arch' => 'x64'
793
+ 'ruby_arch' => 'x64',
1317
794
  },
1318
795
  :vmpooler => {
1319
- 'template' => 'win-2008-x86_64'
1320
- }
796
+ 'template' => 'win-2008-x86_64',
797
+ },
1321
798
  },
1322
799
  'windows2008-6432' => {
1323
800
  :general => {
1324
801
  'platform' => 'windows-2008-64',
1325
802
  'packaging_platform' => 'windows-2012-x64',
1326
- 'ruby_arch' => 'x86'
803
+ 'ruby_arch' => 'x86',
1327
804
  },
1328
805
  :vmpooler => {
1329
- 'template' => 'win-2008-x86_64'
1330
- }
806
+ 'template' => 'win-2008-x86_64',
807
+ },
1331
808
  },
1332
809
  'windows2008r2-64' => {
1333
810
  :general => {
1334
811
  'platform' => 'windows-2008r2-64',
1335
812
  'packaging_platform' => 'windows-2012-x64',
1336
- 'ruby_arch' => 'x64'
813
+ 'ruby_arch' => 'x64',
1337
814
  },
1338
815
  :vmpooler => {
1339
- 'template' => 'win-2008r2-x86_64'
1340
- }
816
+ 'template' => 'win-2008r2-x86_64',
817
+ },
1341
818
  },
1342
819
  'windows2008r2-6432' => {
1343
820
  :general => {
1344
821
  'platform' => 'windows-2008r2-64',
1345
822
  'packaging_platform' => 'windows-2012-x64',
1346
- 'ruby_arch' => 'x86'
823
+ 'ruby_arch' => 'x86',
1347
824
  },
1348
825
  :vmpooler => {
1349
- 'template' => 'win-2008r2-x86_64'
1350
- }
826
+ 'template' => 'win-2008r2-x86_64',
827
+ },
1351
828
  },
1352
829
  'windows2012-64' => {
1353
830
  :general => {
1354
831
  'platform' => 'windows-2012-64',
1355
832
  'packaging_platform' => 'windows-2012-x64',
1356
- 'ruby_arch' => 'x64'
833
+ 'ruby_arch' => 'x64',
1357
834
  },
1358
835
  :vmpooler => {
1359
- 'template' => 'win-2012-x86_64'
1360
- }
836
+ 'template' => 'win-2012-x86_64',
837
+ },
1361
838
  },
1362
839
  'windows2012-6432' => {
1363
840
  :general => {
1364
841
  'platform' => 'windows-2012-64',
1365
842
  'packaging_platform' => 'windows-2012-x64',
1366
- 'ruby_arch' => 'x86'
843
+ 'ruby_arch' => 'x86',
1367
844
  },
1368
845
  :vmpooler => {
1369
- 'template' => 'win-2012-x86_64'
1370
- }
846
+ 'template' => 'win-2012-x86_64',
847
+ },
1371
848
  },
1372
849
  'windows2012r2-64' => {
1373
850
  :general => {
1374
851
  'platform' => 'windows-2012r2-64',
1375
852
  'packaging_platform' => 'windows-2012-x64',
1376
- 'ruby_arch' => 'x64'
853
+ 'ruby_arch' => 'x64',
1377
854
  },
1378
855
  :vmpooler => {
1379
- 'template' => 'win-2012r2-x86_64'
1380
- }
856
+ 'template' => 'win-2012r2-x86_64',
857
+ },
1381
858
  },
1382
859
  'windowsfips2012r2-64' => {
1383
860
  :general => {
1384
861
  'platform' => 'windows-2012r2-64',
1385
862
  'packaging_platform' => 'windowsfips-2012-x64',
1386
- 'ruby_arch' => 'x64'
863
+ 'ruby_arch' => 'x64',
1387
864
  },
1388
865
  :vmpooler => {
1389
- 'template' => 'win-2012r2-fips-x86_64'
1390
- }
866
+ 'template' => 'win-2012r2-fips-x86_64',
867
+ },
1391
868
  },
1392
869
  'windowsfips2012r2-6432' => {
1393
870
  :general => {
1394
871
  'platform' => 'windows-2012r2-64',
1395
872
  'packaging_platform' => 'windowsfips-2012-x64',
1396
- 'ruby_arch' => 'x64'
873
+ 'ruby_arch' => 'x64',
1397
874
  },
1398
875
  :vmpooler => {
1399
- 'template' => 'win-2012r2-fips-x86_64'
1400
- }
876
+ 'template' => 'win-2012r2-fips-x86_64',
877
+ },
1401
878
  },
1402
879
  'windows2012r2-6432' => {
1403
880
  :general => {
1404
881
  'platform' => 'windows-2012r2-64',
1405
882
  'packaging_platform' => 'windows-2012-x64',
1406
- 'ruby_arch' => 'x86'
883
+ 'ruby_arch' => 'x86',
1407
884
  },
1408
885
  :vmpooler => {
1409
- 'template' => 'win-2012r2-x86_64'
1410
- }
886
+ 'template' => 'win-2012r2-x86_64',
887
+ },
1411
888
  },
1412
889
  'windows2012r2_wmf5-64' => {
1413
890
  :general => {
1414
891
  'platform' => 'windows-2012r2-64',
1415
892
  'packaging_platform' => 'windows-2012-x64',
1416
- 'ruby_arch' => 'x64'
893
+ 'ruby_arch' => 'x64',
1417
894
  },
1418
895
  :vmpooler => {
1419
- 'template' => 'win-2012r2-wmf5-x86_64'
1420
- }
896
+ 'template' => 'win-2012r2-wmf5-x86_64',
897
+ },
1421
898
  },
1422
899
  'windows2012r2_ja-64' => {
1423
900
  :general => {
1424
901
  'platform' => 'windows-2012r2-64',
1425
902
  'packaging_platform' => 'windows-2012-x64',
1426
- 'ruby_arch' => 'x64'
903
+ 'ruby_arch' => 'x64',
1427
904
  },
1428
905
  :vmpooler => {
1429
906
  'template' => 'win-2012r2-ja-x86_64',
1430
- 'locale' => 'ja'
1431
- }
907
+ 'locale' => 'ja',
908
+ },
1432
909
  },
1433
910
  'windows2012r2_ja-6432' => {
1434
911
  :general => {
1435
912
  'platform' => 'windows-2012r2-64',
1436
913
  'packaging_platform' => 'windows-2012-x64',
1437
- 'ruby_arch' => 'x86'
914
+ 'ruby_arch' => 'x86',
1438
915
  },
1439
916
  :vmpooler => {
1440
917
  'template' => 'win-2012r2-ja-x86_64',
1441
- 'locale' => 'ja'
1442
- }
918
+ 'locale' => 'ja',
919
+ },
1443
920
  },
1444
921
  'windows2012r2_fr-64' => {
1445
922
  :general => {
1446
923
  'platform' => 'windows-2012r2-64',
1447
924
  'packaging_platform' => 'windows-2012-x64',
1448
- 'ruby_arch' => 'x64'
925
+ 'ruby_arch' => 'x64',
1449
926
  },
1450
927
  :vmpooler => {
1451
928
  'template' => 'win-2012r2-fr-x86_64',
1452
929
  'user' => 'Administrateur',
1453
- 'locale' => 'fr'
1454
- }
930
+ 'locale' => 'fr',
931
+ },
1455
932
  },
1456
933
  'windows2012r2_fr-6432' => {
1457
934
  :general => {
1458
935
  'platform' => 'windows-2012r2-64',
1459
936
  'packaging_platform' => 'windows-2012-x64',
1460
- 'ruby_arch' => 'x86'
937
+ 'ruby_arch' => 'x86',
1461
938
  },
1462
939
  :vmpooler => {
1463
940
  'template' => 'win-2012r2-fr-x86_64',
1464
941
  'user' => 'Administrateur',
1465
- 'locale' => 'fr'
1466
- }
942
+ 'locale' => 'fr',
943
+ },
1467
944
  },
1468
945
  'windows2012r2_core-64' => {
1469
946
  :general => {
1470
947
  'platform' => 'windows-2012r2-64',
1471
948
  'packaging_platform' => 'windows-2012-x64',
1472
- 'ruby_arch' => 'x64'
949
+ 'ruby_arch' => 'x64',
1473
950
  },
1474
951
  :vmpooler => {
1475
- 'template' => 'win-2012r2-core-x86_64'
1476
- }
952
+ 'template' => 'win-2012r2-core-x86_64',
953
+ },
1477
954
  },
1478
955
  'windows2012r2_core-6432' => {
1479
956
  :general => {
1480
957
  'platform' => 'windows-2012r2-64',
1481
958
  'packaging_platform' => 'windows-2012-x64',
1482
- 'ruby_arch' => 'x86'
959
+ 'ruby_arch' => 'x86',
1483
960
  },
1484
961
  :vmpooler => {
1485
- 'template' => 'win-2012r2-core-x86_64'
1486
- }
962
+ 'template' => 'win-2012r2-core-x86_64',
963
+ },
1487
964
  },
1488
965
  'windows2016-64' => {
1489
966
  :general => {
1490
967
  'platform' => 'windows-2016-64',
1491
968
  'packaging_platform' => 'windows-2012-x64',
1492
- 'ruby_arch' => 'x64'
969
+ 'ruby_arch' => 'x64',
1493
970
  },
1494
971
  :vmpooler => {
1495
- 'template' => 'win-2016-x86_64'
1496
- }
972
+ 'template' => 'win-2016-x86_64',
973
+ },
1497
974
  },
1498
975
  'windows2016-6432' => {
1499
976
  :general => {
1500
977
  'platform' => 'windows-2016-64',
1501
978
  'packaging_platform' => 'windows-2012-x64',
1502
- 'ruby_arch' => 'x86'
979
+ 'ruby_arch' => 'x86',
1503
980
  },
1504
981
  :vmpooler => {
1505
- 'template' => 'win-2016-x86_64'
1506
- }
982
+ 'template' => 'win-2016-x86_64',
983
+ },
1507
984
  },
1508
985
  'windows2016_core-64' => {
1509
986
  :general => {
1510
987
  'platform' => 'windows-2016-64',
1511
988
  'packaging_platform' => 'windows-2012-x64',
1512
- 'ruby_arch' => 'x64'
989
+ 'ruby_arch' => 'x64',
1513
990
  },
1514
991
  :vmpooler => {
1515
- 'template' => 'win-2016-core-x86_64'
1516
- }
992
+ 'template' => 'win-2016-core-x86_64',
993
+ },
1517
994
  },
1518
995
  'windows2016_core-6432' => {
1519
996
  :general => {
1520
997
  'platform' => 'windows-2016-64',
1521
998
  'packaging_platform' => 'windows-2012-x64',
1522
- 'ruby_arch' => 'x86'
999
+ 'ruby_arch' => 'x86',
1523
1000
  },
1524
1001
  :vmpooler => {
1525
- 'template' => 'win-2016-core-x86_64'
1526
- }
1002
+ 'template' => 'win-2016-core-x86_64',
1003
+ },
1527
1004
  },
1528
1005
  'windows2016_fr-64' => {
1529
1006
  :general => {
1530
1007
  'platform' => 'windows-2016-64',
1531
1008
  'packaging_platform' => 'windows-2012-x64',
1532
- 'ruby_arch' => 'x64'
1009
+ 'ruby_arch' => 'x64',
1533
1010
  },
1534
1011
  :vmpooler => {
1535
1012
  'template' => 'win-2016-fr-x86_64',
1536
1013
  'user' => 'Administrateur',
1537
- 'locale' => 'fr'
1538
- }
1014
+ 'locale' => 'fr',
1015
+ },
1539
1016
  },
1540
1017
  'windows2016_fr-6432' => {
1541
1018
  :general => {
1542
1019
  'platform' => 'windows-2016-64',
1543
1020
  'packaging_platform' => 'windows-2012-x64',
1544
- 'ruby_arch' => 'x86'
1021
+ 'ruby_arch' => 'x86',
1545
1022
  },
1546
1023
  :vmpooler => {
1547
1024
  'template' => 'win-2016-fr-x86_64',
1548
1025
  'user' => 'Administrateur',
1549
- 'locale' => 'fr'
1550
- }
1026
+ 'locale' => 'fr',
1027
+ },
1551
1028
  },
1552
1029
  'windows2019-64' => {
1553
1030
  :general => {
1554
1031
  'platform' => 'windows-2019-64',
1555
1032
  'packaging_platform' => 'windows-2012-x64',
1556
- 'ruby_arch' => 'x64'
1033
+ 'ruby_arch' => 'x64',
1557
1034
  },
1558
1035
  :vmpooler => {
1559
- 'template' => 'win-2019-x86_64'
1560
- }
1036
+ 'template' => 'win-2019-x86_64',
1037
+ },
1561
1038
  },
1562
1039
  'windows2019-6432' => {
1563
1040
  :general => {
1564
1041
  'platform' => 'windows-2019-64',
1565
1042
  'packaging_platform' => 'windows-2012-x64',
1566
- 'ruby_arch' => 'x86'
1043
+ 'ruby_arch' => 'x86',
1567
1044
  },
1568
1045
  :vmpooler => {
1569
- 'template' => 'win-2019-x86_64'
1570
- }
1046
+ 'template' => 'win-2019-x86_64',
1047
+ },
1571
1048
  },
1572
1049
  'windows2019_ja-64' => {
1573
1050
  :general => {
1574
1051
  'platform' => 'windows-2019-64',
1575
1052
  'packaging_platform' => 'windows-2012-x64',
1576
- 'ruby_arch' => 'x64'
1053
+ 'ruby_arch' => 'x64',
1577
1054
  },
1578
1055
  :vmpooler => {
1579
1056
  'template' => 'win-2019-ja-x86_64',
1580
- 'locale' => 'ja'
1581
- }
1057
+ 'locale' => 'ja',
1058
+ },
1582
1059
  },
1583
1060
  'windows2019_ja-6432' => {
1584
1061
  :general => {
1585
1062
  'platform' => 'windows-2019-64',
1586
1063
  'packaging_platform' => 'windows-2012-x64',
1587
- 'ruby_arch' => 'x86'
1064
+ 'ruby_arch' => 'x86',
1588
1065
  },
1589
1066
  :vmpooler => {
1590
1067
  'template' => 'win-2019-ja-x86_64',
1591
- 'locale' => 'ja'
1592
- }
1068
+ 'locale' => 'ja',
1069
+ },
1593
1070
  },
1594
1071
  'windows2019_fr-64' => {
1595
1072
  :general => {
1596
1073
  'platform' => 'windows-2019-64',
1597
1074
  'packaging_platform' => 'windows-2012-x64',
1598
- 'ruby_arch' => 'x64'
1075
+ 'ruby_arch' => 'x64',
1599
1076
  },
1600
1077
  :vmpooler => {
1601
1078
  'template' => 'win-2019-fr-x86_64',
1602
1079
  'user' => 'Administrateur',
1603
- 'locale' => 'fr'
1604
- }
1080
+ 'locale' => 'fr',
1081
+ },
1605
1082
  },
1606
1083
  'windows2019_fr-6432' => {
1607
1084
  :general => {
1608
1085
  'platform' => 'windows-2019-64',
1609
1086
  'packaging_platform' => 'windows-2012-x64',
1610
- 'ruby_arch' => 'x86'
1087
+ 'ruby_arch' => 'x86',
1611
1088
  },
1612
1089
  :vmpooler => {
1613
1090
  'template' => 'win-2019-fr-x86_64',
1614
1091
  'user' => 'Administrateur',
1615
- 'locale' => 'fr'
1616
- }
1092
+ 'locale' => 'fr',
1093
+ },
1617
1094
  },
1618
1095
  'windows2019_core-64' => {
1619
1096
  :general => {
1620
1097
  'platform' => 'windows-2019-64',
1621
1098
  'packaging_platform' => 'windows-2012-x64',
1622
- 'ruby_arch' => 'x64'
1099
+ 'ruby_arch' => 'x64',
1623
1100
  },
1624
1101
  :vmpooler => {
1625
- 'template' => 'win-2019-core-x86_64'
1626
- }
1102
+ 'template' => 'win-2019-core-x86_64',
1103
+ },
1627
1104
  },
1628
1105
  'windows2019_core-6432' => {
1629
1106
  :general => {
1630
1107
  'platform' => 'windows-2019-64',
1631
1108
  'packaging_platform' => 'windows-2012-x64',
1632
- 'ruby_arch' => 'x86'
1109
+ 'ruby_arch' => 'x86',
1633
1110
  },
1634
1111
  :vmpooler => {
1635
- 'template' => 'win-2019-core-x86_64'
1636
- }
1112
+ 'template' => 'win-2019-core-x86_64',
1113
+ },
1637
1114
  },
1638
1115
  'windows2022-64' => {
1639
1116
  :general => {
1640
1117
  'platform' => 'windows-2022-64',
1641
1118
  'packaging_platform' => 'windows-2012-x64',
1642
- 'ruby_arch' => 'x64'
1643
- },
1644
- :vmpooler => {
1645
- 'template' => 'win-2022-x86_64'
1646
- }
1647
- },
1648
- 'windows7-64' => {
1649
- :general => {
1650
- 'platform' => 'windows-7-64',
1651
- 'packaging_platform' => 'windows-2012-x64',
1652
- 'ruby_arch' => 'x64'
1119
+ 'ruby_arch' => 'x64',
1653
1120
  },
1654
1121
  :vmpooler => {
1655
- 'template' => 'win-7-x86_64'
1656
- }
1657
- },
1658
- 'windows81-64' => {
1659
- :general => {
1660
- 'platform' => 'windows-8.1-64',
1661
- 'packaging_platform' => 'windows-2012-x64',
1662
- 'ruby_arch' => 'x64'
1122
+ 'template' => 'win-2022-x86_64',
1663
1123
  },
1664
- :vmpooler => {
1665
- 'template' => 'win-81-x86_64'
1666
- }
1667
1124
  },
1668
1125
  'windows10ent-32' => {
1669
1126
  :general => {
1670
1127
  'platform' => 'windows-10ent-32',
1671
1128
  'packaging_platform' => 'windows-2012-x86',
1672
- 'ruby_arch' => 'x86'
1129
+ 'ruby_arch' => 'x86',
1673
1130
  },
1674
1131
  :vmpooler => {
1675
- 'template' => 'win-10-ent-i386'
1676
- }
1132
+ 'template' => 'win-10-ent-i386',
1133
+ },
1677
1134
  },
1678
1135
  'windows10ent-64' => {
1679
1136
  :general => {
1680
1137
  'platform' => 'windows-10ent-64',
1681
1138
  'packaging_platform' => 'windows-2012-x64',
1682
- 'ruby_arch' => 'x64'
1139
+ 'ruby_arch' => 'x64',
1683
1140
  },
1684
1141
  :vmpooler => {
1685
- 'template' => 'win-10-ent-x86_64'
1686
- }
1142
+ 'template' => 'win-10-ent-x86_64',
1143
+ },
1687
1144
  },
1688
1145
  'windows10next-32' => {
1689
1146
  :general => {
1690
1147
  'platform' => 'windows-10ent-32',
1691
1148
  'packaging_platform' => 'windows-2012-x86',
1692
- 'ruby_arch' => 'x86'
1149
+ 'ruby_arch' => 'x86',
1693
1150
  },
1694
1151
  :vmpooler => {
1695
- 'template' => 'win-10-next-i386'
1696
- }
1152
+ 'template' => 'win-10-next-i386',
1153
+ },
1697
1154
  },
1698
1155
  'windows10next-64' => {
1699
1156
  :general => {
1700
1157
  'platform' => 'windows-10ent-64',
1701
1158
  'packaging_platform' => 'windows-2012-x64',
1702
- 'ruby_arch' => 'x64'
1159
+ 'ruby_arch' => 'x64',
1703
1160
  },
1704
1161
  :vmpooler => {
1705
- 'template' => 'win-10-next-x86_64'
1706
- }
1162
+ 'template' => 'win-10-next-x86_64',
1163
+ },
1707
1164
  },
1708
1165
  'windows10pro-64' => {
1709
1166
  :general => {
1710
1167
  'platform' => 'windows-10pro-64',
1711
1168
  'packaging_platform' => 'windows-2012-x64',
1712
- 'ruby_arch' => 'x64'
1169
+ 'ruby_arch' => 'x64',
1713
1170
  },
1714
1171
  :vmpooler => {
1715
- 'template' => 'win-10-pro-x86_64'
1716
- }
1172
+ 'template' => 'win-10-pro-x86_64',
1173
+ },
1717
1174
  },
1718
1175
  'windows10_1511-64' => {
1719
1176
  :general => {
1720
1177
  'platform' => 'windows-10ent-64',
1721
1178
  'packaging_platform' => 'windows-2012-x64',
1722
- 'ruby_arch' => 'x64'
1179
+ 'ruby_arch' => 'x64',
1723
1180
  },
1724
1181
  :vmpooler => {
1725
- 'template' => 'win-10-1511-x86_64'
1726
- }
1182
+ 'template' => 'win-10-1511-x86_64',
1183
+ },
1727
1184
  },
1728
1185
  'windows10_1607-64' => {
1729
1186
  :general => {
1730
1187
  'platform' => 'windows-10ent-64',
1731
1188
  'packaging_platform' => 'windows-2012-x64',
1732
- 'ruby_arch' => 'x64'
1189
+ 'ruby_arch' => 'x64',
1733
1190
  },
1734
1191
  :vmpooler => {
1735
- 'template' => 'win-10-1607-x86_64'
1736
- }
1192
+ 'template' => 'win-10-1607-x86_64',
1193
+ },
1737
1194
  },
1738
1195
  'windows10_1809-64' => {
1739
1196
  :general => {
1740
1197
  'platform' => 'windows-10ent-64',
1741
1198
  'packaging_platform' => 'windows-2012-x64',
1742
- 'ruby_arch' => 'x64'
1199
+ 'ruby_arch' => 'x64',
1743
1200
  },
1744
1201
  :vmpooler => {
1745
- 'template' => 'win-10-1809-x86_64'
1746
- }
1202
+ 'template' => 'win-10-1809-x86_64',
1203
+ },
1747
1204
  },
1748
1205
  'windows11ent-64' => {
1749
1206
  :general => {
1750
1207
  'platform' => 'windows-11ent-64',
1751
1208
  'packaging_platform' => 'windows-2012-x64',
1752
- 'ruby_arch' => 'x64'
1209
+ 'ruby_arch' => 'x64',
1753
1210
  },
1754
1211
  :vmpooler => {
1755
- 'template' => 'win-11-ent-x86_64'
1756
- }
1757
- }
1212
+ 'template' => 'win-11-ent-x86_64',
1213
+ },
1214
+ },
1758
1215
  })
1759
1216
 
1760
1217
  result['archlinux-64'] = result['archlinuxrolling-64']
@@ -1763,62 +1220,14 @@ module BeakerHostGenerator
1763
1220
 
1764
1221
  def osinfo_bhgv1
1765
1222
  {
1766
- 'centos4-32' => {
1767
- :general => {
1768
- 'platform' => 'centos-4-i386'
1769
- },
1770
- :vmpooler => {
1771
- 'template' => 'centos-4-i386'
1772
- }
1773
- },
1774
- 'centos4-64' => {
1775
- :general => {
1776
- 'platform' => 'centos-4-x86_64'
1777
- },
1778
- :vmpooler => {
1779
- 'template' => 'centos-4-x86_64'
1780
- }
1781
- },
1782
- 'centos5-32' => {
1783
- :general => {
1784
- 'platform' => 'centos-5-i386'
1785
- },
1786
- :vmpooler => {
1787
- 'template' => 'centos-5-i386'
1788
- }
1789
- },
1790
- 'centos5-64' => {
1791
- :general => {
1792
- 'platform' => 'centos-5-x86_64'
1793
- },
1794
- :vmpooler => {
1795
- 'template' => 'centos-5-x86_64'
1796
- }
1797
- },
1798
- 'centos6-32' => {
1223
+ 'centos7-64' => {
1799
1224
  :general => {
1800
- 'platform' => 'centos-6-i386'
1225
+ 'platform' => 'centos-7-x86_64',
1801
1226
  },
1802
1227
  :vmpooler => {
1803
- 'template' => 'centos-6-i386'
1804
- }
1805
- },
1806
- 'centos6-64' => {
1807
- :general => {
1808
- 'platform' => 'centos-6-x86_64'
1228
+ 'template' => 'centos-7-x86_64',
1809
1229
  },
1810
- :vmpooler => {
1811
- 'template' => 'centos-6-x86_64'
1812
- }
1813
1230
  },
1814
- 'centos7-64' => {
1815
- :general => {
1816
- 'platform' => 'centos-7-x86_64'
1817
- },
1818
- :vmpooler => {
1819
- 'template' => 'centos-7-x86_64'
1820
- }
1821
- }
1822
1231
  }
1823
1232
  end
1824
1233
 
@@ -1867,34 +1276,22 @@ module BeakerHostGenerator
1867
1276
  # @example Getting CentOS 6 64-bit information for the VMPooler hypervisor
1868
1277
  # Given the OS info map looks like:
1869
1278
  # ...
1870
- # 'centos6-64' => {
1871
- # :general => { 'platform' => 'el-6-x86_64' },
1872
- # :vmpooler => { 'template' => 'centos-6-x86_64' }
1279
+ # 'centos9-64' => {
1280
+ # :general => { 'platform' => 'el-9-x86_64' },
1281
+ # :vmpooler => { 'template' => 'centos-9-x86_64' }
1873
1282
  # }
1874
1283
  # ...
1875
1284
  #
1876
- # Then get_platform_info(0, 'centos6-64', :vmpooler) returns:
1285
+ # Then get_platform_info(0, 'centos9-64', :vmpooler) returns:
1877
1286
  # {
1878
1287
  # 'platform' => 'el-6-x86_64',
1879
1288
  # 'template' => 'centos-6-x86_64'
1880
1289
  # }
1881
1290
  def get_platform_info(bhg_version, platform, hypervisor)
1882
1291
  info = get_osinfo(bhg_version)[platform]
1883
- {}.deeper_merge!(info[:general]).deeper_merge!(info[hypervisor])
1884
- end
1292
+ return {} unless info
1885
1293
 
1886
- # Perform any adjustments or modifications necessary to the given node
1887
- # configuration map, taking things like platform and PE version into
1888
- # account.
1889
- #
1890
- # This is intended to capture any oddities that are necessary for a node
1891
- # to be used in a particular context.
1892
- def fixup_node(cfg)
1893
- # PE 2.8 doesn't exist for EL 4. We use 2.0 instead.
1894
- if cfg['platform'] =~ /el-4/ and pe_version =~ /2\.8/
1895
- cfg['pe_ver'] = "2.0.3"
1896
- end
1294
+ {}.deeper_merge!(info[:general]).deeper_merge!(info[hypervisor])
1897
1295
  end
1898
-
1899
1296
  end
1900
1297
  end