beaker-hostgenerator 1.2.1 → 1.2.6
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 +4 -4
- data/lib/beaker-hostgenerator/data.rb +43 -5
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6bac48f5ec50d766272a9566ae6bb9a4cde3504081252dbbbdbdd9d393260f7
|
|
4
|
+
data.tar.gz: 2c24a95922901b81ffb83ccc6ef1c0523ea7fceeeb6c022b8f47401826b8dc83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76d4574ca1ea66613dd532d496ad25fc43c9dd73f88c0b62ffee6a96fe4c99715e1776b2a8d5cac790706eb101ca8fbab165f4ee1ef5ee24621e1488d05e14b6
|
|
7
|
+
data.tar.gz: a3d660d0d6d998751b5e3278c14fc3f52aae72e5532d58760ad00c3c795e83b5efde42e38a0b6ac0831c8f62299b3382991a00cb2ec3c6fbe01b60e25a96a624
|
|
@@ -13,7 +13,7 @@ module BeakerHostGenerator
|
|
|
13
13
|
# `include BeakerHostGenerator::Data` and then `<function>()`.
|
|
14
14
|
module Data
|
|
15
15
|
module_function
|
|
16
|
-
MASTER_PE_VERSION=2019.
|
|
16
|
+
MASTER_PE_VERSION=2019.5
|
|
17
17
|
PE_TARBALL_SERVER="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local"
|
|
18
18
|
|
|
19
19
|
def pe_version
|
|
@@ -246,7 +246,7 @@ module BeakerHostGenerator
|
|
|
246
246
|
:docker => {
|
|
247
247
|
'docker_image_commands' => [
|
|
248
248
|
'cp /bin/true /sbin/agetty',
|
|
249
|
-
'yum install -y crontabs initscripts iproute openssl wget which'
|
|
249
|
+
'yum install -y crontabs initscripts iproute openssl wget which glibc-langpack-en'
|
|
250
250
|
]
|
|
251
251
|
},
|
|
252
252
|
:vmpooler => {
|
|
@@ -514,7 +514,7 @@ module BeakerHostGenerator
|
|
|
514
514
|
'docker_image_commands' => [
|
|
515
515
|
'cp /bin/true /sbin/agetty',
|
|
516
516
|
'rm -f /usr/sbin/policy-rc.d',
|
|
517
|
-
'apt-get update && apt-get install -y cron locales-all net-tools wget'
|
|
517
|
+
'apt-get update && apt-get install -y cron locales-all net-tools wget apt-transport-https'
|
|
518
518
|
]
|
|
519
519
|
},
|
|
520
520
|
:vagrant => {
|
|
@@ -536,7 +536,7 @@ module BeakerHostGenerator
|
|
|
536
536
|
'docker_image_commands' => [
|
|
537
537
|
'cp /bin/true /sbin/agetty',
|
|
538
538
|
'rm -f /usr/sbin/policy-rc.d',
|
|
539
|
-
'apt-get update && apt-get install -y cron locales-all net-tools wget'
|
|
539
|
+
'apt-get update && apt-get install -y cron locales-all net-tools wget apt-transport-https'
|
|
540
540
|
]
|
|
541
541
|
}
|
|
542
542
|
},
|
|
@@ -549,7 +549,7 @@ module BeakerHostGenerator
|
|
|
549
549
|
'docker_image_commands' => [
|
|
550
550
|
'cp /bin/true /sbin/agetty',
|
|
551
551
|
'rm -f /usr/sbin/policy-rc.d',
|
|
552
|
-
'apt-get update && apt-get install -y cron locales-all net-tools wget systemd-sysv gnupg'
|
|
552
|
+
'apt-get update && apt-get install -y cron locales-all net-tools wget systemd-sysv gnupg apt-transport-https'
|
|
553
553
|
]
|
|
554
554
|
},
|
|
555
555
|
:vagrant => {
|
|
@@ -571,6 +571,9 @@ module BeakerHostGenerator
|
|
|
571
571
|
'apt-get update && apt-get install -y cron locales-all net-tools wget gnupg'
|
|
572
572
|
]
|
|
573
573
|
},
|
|
574
|
+
:vagrant => {
|
|
575
|
+
'box' => 'debian/buster64',
|
|
576
|
+
},
|
|
574
577
|
:vmpooler => {
|
|
575
578
|
'template' => 'debian-10-x86_64'
|
|
576
579
|
}
|
|
@@ -769,6 +772,15 @@ module BeakerHostGenerator
|
|
|
769
772
|
'template' => 'fedora-31-x86_64'
|
|
770
773
|
}
|
|
771
774
|
},
|
|
775
|
+
'fedora32-64' => {
|
|
776
|
+
:general => {
|
|
777
|
+
'platform' => 'fedora-32-x86_64',
|
|
778
|
+
'packaging_platform' => 'fedora-32-x86_64'
|
|
779
|
+
},
|
|
780
|
+
:vmpooler => {
|
|
781
|
+
'template' => 'fedora-32-x86_64'
|
|
782
|
+
}
|
|
783
|
+
},
|
|
772
784
|
'huaweios6-POWER' => {
|
|
773
785
|
:general => {
|
|
774
786
|
'platform' => 'huaweios-6-powerpc'
|
|
@@ -915,6 +927,15 @@ module BeakerHostGenerator
|
|
|
915
927
|
'template' => 'osx-1014-x86_64'
|
|
916
928
|
}
|
|
917
929
|
},
|
|
930
|
+
'osx1015-64' => {
|
|
931
|
+
:general => {
|
|
932
|
+
'platform' => 'osx-10.15-x86_64',
|
|
933
|
+
'packaging_platform' => 'osx-10.15-x86_64'
|
|
934
|
+
},
|
|
935
|
+
:vmpooler => {
|
|
936
|
+
'template' => 'osx-1015-x86_64'
|
|
937
|
+
}
|
|
938
|
+
},
|
|
918
939
|
'redhat4-32' => {
|
|
919
940
|
:general => {
|
|
920
941
|
'platform' => 'el-4-i386'
|
|
@@ -1419,6 +1440,23 @@ module BeakerHostGenerator
|
|
|
1419
1440
|
'template' => 'ubuntu-1810-x86_64'
|
|
1420
1441
|
}
|
|
1421
1442
|
},
|
|
1443
|
+
'ubuntu2004-64' => {
|
|
1444
|
+
:general => {
|
|
1445
|
+
'platform' => 'ubuntu-20.04-amd64',
|
|
1446
|
+
'packaging_platform' => 'ubuntu-20.04-amd64'
|
|
1447
|
+
},
|
|
1448
|
+
:docker => {
|
|
1449
|
+
'docker_image_commands' => [
|
|
1450
|
+
'cp /bin/true /sbin/agetty',
|
|
1451
|
+
'apt-get install -y net-tools wget locales apt-transport-https iproute2 gnupg',
|
|
1452
|
+
'locale-gen en_US.UTF-8',
|
|
1453
|
+
'echo LANG=en_US.UTF-8 > /etc/default/locale'
|
|
1454
|
+
]
|
|
1455
|
+
},
|
|
1456
|
+
:vmpooler => {
|
|
1457
|
+
'template' => 'ubuntu-2004-x86_64'
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1422
1460
|
'vro6-64' => {
|
|
1423
1461
|
:general => {
|
|
1424
1462
|
'platform' => 'sles-11-x86_64',
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-hostgenerator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.6
|
|
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: 2020-
|
|
13
|
+
date: 2020-06-19 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|
|
@@ -233,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
233
233
|
- !ruby/object:Gem::Version
|
|
234
234
|
version: '0'
|
|
235
235
|
requirements: []
|
|
236
|
-
rubygems_version: 3.0.
|
|
236
|
+
rubygems_version: 3.0.8
|
|
237
237
|
signing_key:
|
|
238
238
|
specification_version: 4
|
|
239
239
|
summary: Beaker Host Generator Utility
|