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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZDljMWQzMTBmOTk2MWMwM2MxOTU1MGU2NzI5OWI5NTEwMWM2NzI4Nw==
4
+ OGM5ZmYyNGRlYWVkODZjYjdjMTE1MjRlNjMzZjU3M2MwZDc5N2ZhMg==
5
5
  data.tar.gz: !binary |-
6
- ZjBmM2NiN2YxYmI1MTMwYmE4YmUzZjY0ZTIwZjVkOWIxODdkZTJhYw==
6
+ OTgwNGJmZWYzY2ViNjE3ZjYzYjM4YTQwNTIzNTRjOGY4ZDg4MTQwNQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MTgyNzZhMDFjZmNhMWJlNWIwNDdiYmFlNDk3MDBhNWNhYTU2YmM0NzNiMzEz
10
- NDE4YmZiNTIyYjZlYjk4ZWU4ODgzZjVkNDU4OGNiY2M5MmI5MDQzYzE4OGY5
11
- NmRhNDAwMGE0OTIwY2EzNjA4ZTEwNTY5NWMwMzgxMzMyNWEwYzA=
9
+ ZTdkZWU4NTQ1N2JmOTk3NjAyZDNlMjQwNWUwN2I1MTFjODRiMTkxOTMzOWFh
10
+ MzUyNDJkN2YwY2Q4N2VlYzQyMDcxMGQ1NTk4NTBlNjIyNmYyODAyMGJkN2M0
11
+ YWI2ODRiZDlkZGE5MGEyYjc0NTEzMzIwODJkNTcyZjhlZjBlODU=
12
12
  data.tar.gz: !binary |-
13
- ODU2ZDk2OTI0MDBmYTFkMjQ0ZTAxZTZhOGY3YmY4NjhmNDBkMDc3YTlkMzU2
14
- NjA1MDk2NzE4Mjc3YzU4NTIxYTYyMTFkMmM0NDNkZDgyY2U0MWQzNzlkZjdl
15
- NTM3ODc5MzAzZTA0NDU2YTNhY2M4ZTBlNGRiNTgwNDM3ZDcxZDk=
13
+ ODVmMmNiM2NkNjgwMzljZDgyNTBlZGExMmU2MDA5Nzk0MzdkNDk2YzI5ZGIx
14
+ NTMzY2M1ODZjOWQzNDVmN2UyYzcwZjYyZTQ5NmNmMzdlNTBjOTQ4MjRlNjhi
15
+ NTk0Mjg1YjFjOGQ5M2E3OGM1YWY3YmQzOWE4MTEzMjNkNjQ4ODY=
@@ -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'
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '1.0.1'
3
+ STRING = '1.0.2'
4
4
  end
5
5
  end
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.1
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-14 00:00:00.000000000 Z
13
+ date: 2017-08-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest