beaker-hostgenerator 1.2.2 → 1.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +8 -0
- data/.travis.yml +10 -0
- data/lib/beaker-hostgenerator/data.rb +46 -5
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29b9d70956aa12b639007a381adf61c012a5ec0b5a7aad0e89347b8c8c481e47
|
4
|
+
data.tar.gz: d45099a474b8895f6a7d8c06f725f1d4fc00a66ee3cc4692e1d70c0cbaba8a85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a30a9ee9f577ca147b984d67f68fe45de2f46493bf409c20d8f0aa0369e815dfd22234370be21c4bf091ddee28bb0e569015d858367fd49989d932b9d4ac7625
|
7
|
+
data.tar.gz: 787115326d35df17c8a790f5d7e35405f5d2930f91e9293c85945eb7bf2f257438ac3186fff874a3977cf4114c814146cbff74433c012414ba0528870f7b3a34
|
data/.travis.yml
ADDED
@@ -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'
|
@@ -1036,6 +1048,18 @@ module BeakerHostGenerator
|
|
1036
1048
|
'template' => 'redhat-8-x86_64'
|
1037
1049
|
}
|
1038
1050
|
},
|
1051
|
+
'redhat8-AARCH64' => {
|
1052
|
+
:general => {
|
1053
|
+
'platform' => 'el-8-aarch64',
|
1054
|
+
'packaging_platform' => 'el-8-aarch64'
|
1055
|
+
},
|
1056
|
+
:abs => {
|
1057
|
+
'template' => 'redhat-8-arm64'
|
1058
|
+
},
|
1059
|
+
:vmpooler => {
|
1060
|
+
'template' => 'redhat-8-x86_64'
|
1061
|
+
}
|
1062
|
+
},
|
1039
1063
|
'scientific5-32' => {
|
1040
1064
|
:general => {
|
1041
1065
|
'platform' => 'el-5-i386',
|
@@ -1428,6 +1452,23 @@ module BeakerHostGenerator
|
|
1428
1452
|
'template' => 'ubuntu-1810-x86_64'
|
1429
1453
|
}
|
1430
1454
|
},
|
1455
|
+
'ubuntu2004-64' => {
|
1456
|
+
:general => {
|
1457
|
+
'platform' => 'ubuntu-20.04-amd64',
|
1458
|
+
'packaging_platform' => 'ubuntu-20.04-amd64'
|
1459
|
+
},
|
1460
|
+
:docker => {
|
1461
|
+
'docker_image_commands' => [
|
1462
|
+
'cp /bin/true /sbin/agetty',
|
1463
|
+
'apt-get install -y net-tools wget locales apt-transport-https iproute2 gnupg',
|
1464
|
+
'locale-gen en_US.UTF-8',
|
1465
|
+
'echo LANG=en_US.UTF-8 > /etc/default/locale'
|
1466
|
+
]
|
1467
|
+
},
|
1468
|
+
:vmpooler => {
|
1469
|
+
'template' => 'ubuntu-2004-x86_64'
|
1470
|
+
}
|
1471
|
+
},
|
1431
1472
|
'vro6-64' => {
|
1432
1473
|
:general => {
|
1433
1474
|
'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.7
|
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-09-09 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|
@@ -184,9 +184,11 @@ executables:
|
|
184
184
|
extensions: []
|
185
185
|
extra_rdoc_files: []
|
186
186
|
files:
|
187
|
+
- ".github/dependabot.yml"
|
187
188
|
- ".gitignore"
|
188
189
|
- ".rspec"
|
189
190
|
- ".simplecov"
|
191
|
+
- ".travis.yml"
|
190
192
|
- CHANGELOG.md
|
191
193
|
- CODEOWNERS
|
192
194
|
- CONTRIBUTING.md
|
@@ -233,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
233
235
|
- !ruby/object:Gem::Version
|
234
236
|
version: '0'
|
235
237
|
requirements: []
|
236
|
-
rubygems_version: 3.0.
|
238
|
+
rubygems_version: 3.0.8
|
237
239
|
signing_key:
|
238
240
|
specification_version: 4
|
239
241
|
summary: Beaker Host Generator Utility
|