beaker-hostgenerator 1.1.0 → 1.1.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 +4 -0
- data/lib/beaker-hostgenerator/data.rb +9 -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
|
+
YzdmYzcxNzYzYWNhNzg3OTUxOGI4YjRhZDA1Y2VmOGIzOGMzNzYzNQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YzRmNGJhZjYzZjg0Y2E2Njg4OGU5OWJlOGM5YzAxMmExYzA0NDc4OA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NzQ3NThiY2QwZjNkMWZjNDZmYmU1ZjQ2MTc2M2E4OTc2MDIyYWUzMzYzNDU1
|
|
10
|
+
OTYzMGYxOTQyNDM1MmU5YTA1NzNjYzU2YmJlOTY3MTc5YjIyZDIwNWU3NTdj
|
|
11
|
+
NmZmZWNkZTVhYjNkOTM2Y2UzMmY0ZjgyNTdkYzE3Mzg3YzViMDc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZWMwMzlkYjJmMzE0ZjQyZWFlNTUxZDI5YjVkNmVkMTY3NDJlYThkYjJiYWEw
|
|
14
|
+
NmVhYzE1NDc1NmJiODEwOTBiZTFhMzBmNWU0MjEzNGFmZDcyZTNhZDZhYjlm
|
|
15
|
+
MDI5ZDYzZWZhZGI2YmEwNmU5MTU5Zjg3M2U3ODZmMWU5MzQ0Y2U=
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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.1.1] - 2017-9-27
|
|
8
|
+
- Add platform:
|
|
9
|
+
- amazon-6-x86_64
|
|
10
|
+
|
|
7
11
|
## [1.1.0] - 2017-9-7
|
|
8
12
|
- Add new 'packaging_platform' value to the OSes we build packages for to
|
|
9
13
|
support new install methods in Beaker.
|
|
@@ -108,6 +108,15 @@ module BeakerHostGenerator
|
|
|
108
108
|
'template' => 'aix-7.2-power'
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
|
+
'amazon6-64' => {
|
|
112
|
+
:general => {
|
|
113
|
+
'platform' => 'amazon-6-x86_64',
|
|
114
|
+
'packaging_platform' => 'amazon-6-x86_64'
|
|
115
|
+
},
|
|
116
|
+
:abs => {
|
|
117
|
+
'template' => 'amazon-6-x86_64'
|
|
118
|
+
}
|
|
119
|
+
},
|
|
111
120
|
'arista4-32' => {
|
|
112
121
|
:general => {
|
|
113
122
|
'platform' => 'eos-4-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.1.
|
|
4
|
+
version: 1.1.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-09-
|
|
13
|
+
date: 2017-09-27 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|