beaker-hostgenerator 0.10.0 → 0.10.1
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 +8 -8
- data/CHANGELOG.md +5 -0
- data/lib/beaker-hostgenerator/cli.rb +1 -1
- data/lib/beaker-hostgenerator/data.rb +16 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OTQ1NDZiMTFlZDdlZWI2NTdmYWUzZjRkYzE4N2I3NDdkOWI2NzE2Ng==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZjgyMGI2ZTVkNjEzNzg1NjhlYmY1ZGZiNjM3MDIzY2VhY2YzMzQwOQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OTE3ZTczODViOWIwNjE4YjYzNTQ2OGZmMzk5MzU5OWEzMjRjZWFkOGJlM2Vh
|
|
10
|
+
ZjVjOWE1MmUxZGEyYWVkMjU1YTI4YTc2NDM1ODk2M2Q0NTZmMTg0YmEzODVm
|
|
11
|
+
Mzc4YWExNDE4ZWUyMmVmZTgzZTQ1YmE4ODM1MjZlODAzYTY4ZWY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDI3YmQ4NDIzZGQ1YjgwNjdkMTg4MDA3OTc4YWFkOGYxN2I2Y2U2YzFjMjM2
|
|
14
|
+
NDU0YjAyYTFmNDhiZDZjZWVhNmQ3MGRjMTUyNDAwMmRiYzQ2ODAxMmNkM2Vi
|
|
15
|
+
MTBjZjBhMzAzNjE2NjQzNTFkN2U5ZGRlMmExZDMxZjcxZmE4N2I=
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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
|
+
## [0.10.1] - 2017-7-7
|
|
8
|
+
- Add platforms:
|
|
9
|
+
- rhel-7.3-power8
|
|
10
|
+
- ubuntu-16.04-power8
|
|
11
|
+
|
|
7
12
|
## [0.10.0] - 2017-7-7
|
|
8
13
|
- Add map data structure support to arbitrary settings, which previously only
|
|
9
14
|
supported lists and primitives. Maps and lists can be combined.
|
|
@@ -192,7 +192,7 @@ Usage: beaker-hostgenerator [options] <layout>
|
|
|
192
192
|
result << " 32 => 32-bit OS\n"
|
|
193
193
|
result << " 64 => 64-bit OS\n"
|
|
194
194
|
result << " 6432 => 64-bit OS with 32-bit Puppet (Windows Only)\n"
|
|
195
|
-
result << " POWER => power or powerpc OS (AIX and
|
|
195
|
+
result << " POWER => power or powerpc OS (AIX, Huawei, Redhat and Ubuntu only)\n"
|
|
196
196
|
result << " SPARC => sparc OS (Solaris only)\n"
|
|
197
197
|
result << " S390X => s390x OS (RedHat and SLES only)\n"
|
|
198
198
|
result << "\n\n"
|
|
@@ -537,6 +537,14 @@ module BeakerHostGenerator
|
|
|
537
537
|
'template' => 'redhat-7-x86_64'
|
|
538
538
|
}
|
|
539
539
|
},
|
|
540
|
+
'redhat7-POWER' => {
|
|
541
|
+
:general => {
|
|
542
|
+
'platform' => 'rhel-7.3-power8'
|
|
543
|
+
},
|
|
544
|
+
:abs => {
|
|
545
|
+
'template' => 'rhel-7.3-power8'
|
|
546
|
+
}
|
|
547
|
+
},
|
|
540
548
|
'redhat7-S390X' => {
|
|
541
549
|
:general => {
|
|
542
550
|
'platform' => 'el-7-s390x'
|
|
@@ -792,6 +800,14 @@ module BeakerHostGenerator
|
|
|
792
800
|
'template' => 'ubuntu-1604-x86_64'
|
|
793
801
|
}
|
|
794
802
|
},
|
|
803
|
+
'ubuntu1604-POWER' => {
|
|
804
|
+
:general => {
|
|
805
|
+
'platform' => 'ubuntu-16.04-power8'
|
|
806
|
+
},
|
|
807
|
+
:abs => {
|
|
808
|
+
'template' => 'ubuntu-16.04-power8'
|
|
809
|
+
}
|
|
810
|
+
},
|
|
795
811
|
'ubuntu1610-32' => {
|
|
796
812
|
:general => {
|
|
797
813
|
'platform' => 'ubuntu-16.10-i386'
|
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: 0.10.
|
|
4
|
+
version: 0.10.1
|
|
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-07-
|
|
13
|
+
date: 2017-07-08 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|