beaker-hostgenerator 1.0.1 → 1.0.2
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
|
+
OGM5ZmYyNGRlYWVkODZjYjdjMTE1MjRlNjMzZjU3M2MwZDc5N2ZhMg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OTgwNGJmZWYzY2ViNjE3ZjYzYjM4YTQwNTIzNTRjOGY4ZDg4MTQwNQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZTdkZWU4NTQ1N2JmOTk3NjAyZDNlMjQwNWUwN2I1MTFjODRiMTkxOTMzOWFh
|
|
10
|
+
MzUyNDJkN2YwY2Q4N2VlYzQyMDcxMGQ1NTk4NTBlNjIyNmYyODAyMGJkN2M0
|
|
11
|
+
YWI2ODRiZDlkZGE5MGEyYjc0NTEzMzIwODJkNTcyZjhlZjBlODU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ODVmMmNiM2NkNjgwMzljZDgyNTBlZGExMmU2MDA5Nzk0MzdkNDk2YzI5ZGIx
|
|
14
|
+
NTMzY2M1ODZjOWQzNDVmN2UyYzcwZjYyZTQ5NmNmMzdlNTBjOTQ4MjRlNjhi
|
|
15
|
+
NTk0Mjg1YjFjOGQ5M2E3OGM1YWY3YmQzOWE4MTEzMjNkNjQ4ODY=
|
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
|
+
## [1.0.2] - 2017-8-21
|
|
8
|
+
- Add platforms:
|
|
9
|
+
- sles-12-power8
|
|
10
|
+
- fedora-26-x86_64
|
|
11
|
+
|
|
7
12
|
## [1.0.1] - 2017-8-14
|
|
8
13
|
- Support empty string as the value of version by returning nil from pe_dir()
|
|
9
14
|
- Support unparseable/unknown versions by returning empty string from pe_dir()
|
|
@@ -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, Huawei, Redhat and Ubuntu only)\n"
|
|
195
|
+
result << " POWER => power or powerpc OS (AIX, Huawei, Redhat, SLES 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"
|
|
@@ -380,6 +380,14 @@ module BeakerHostGenerator
|
|
|
380
380
|
'template' => 'fedora-25-x86_64'
|
|
381
381
|
}
|
|
382
382
|
},
|
|
383
|
+
'fedora26-64' => {
|
|
384
|
+
:general => {
|
|
385
|
+
'platform' => 'fedora-26-x86_64'
|
|
386
|
+
},
|
|
387
|
+
:vmpooler => {
|
|
388
|
+
'template' => 'fedora-26-x86_64'
|
|
389
|
+
}
|
|
390
|
+
},
|
|
383
391
|
'huaweios6-POWER' => {
|
|
384
392
|
:general => {
|
|
385
393
|
'platform' => 'huaweios-6-powerpc'
|
|
@@ -640,6 +648,14 @@ module BeakerHostGenerator
|
|
|
640
648
|
'platform' => 'sles-12-s390x'
|
|
641
649
|
}
|
|
642
650
|
},
|
|
651
|
+
'sles12-POWER' => {
|
|
652
|
+
:general => {
|
|
653
|
+
'platform' => 'sles-12-ppc64le'
|
|
654
|
+
},
|
|
655
|
+
:abs => {
|
|
656
|
+
'template' => 'sles-12-power8'
|
|
657
|
+
}
|
|
658
|
+
},
|
|
643
659
|
'solaris10-32' => {
|
|
644
660
|
:general => {
|
|
645
661
|
'platform' => 'solaris-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: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
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-
|
|
13
|
+
date: 2017-08-21 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|