beaker-hostgenerator 1.1.7 → 1.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/beaker-hostgenerator/data.rb +18 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9febe3dc0a10548f27b94b99016848e835fb2244
|
4
|
+
data.tar.gz: 4318f73c6fd38538797095a8df1148e3074bcb8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3412cefaa8354707dc09e10db41f9f15cd9d3a42af677a852aa5fe12ec8134d1d1072c284a4396c7fb6ad2ad58d9d229119eb74cff993329d2b0f76b29891ab0
|
7
|
+
data.tar.gz: 3343586d5d7a8222b8ffca1384e3237a661e9766bcad59bb8c43ae4b5c6c79d1e94883116a5ef042e8a8666927a754e5daad7ee5069b41809cd15fb7b15c92d6
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,19 @@ 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.8] - 2018-03-22
|
8
|
+
- Add platforms:
|
9
|
+
- ubuntu1804-64
|
10
|
+
- vro73-64
|
11
|
+
|
12
|
+
## [1.1.7] - 2018-02-05
|
13
|
+
- Add platform:
|
14
|
+
- fedora27-64
|
15
|
+
|
16
|
+
## [1.1.6] - 2018-01-19
|
17
|
+
- Add platform:
|
18
|
+
- redhatfips7-64
|
19
|
+
|
7
20
|
## [1.1.5] - 2018-01-05
|
8
21
|
- Add support for amazon7 (AmazonLinux v2)
|
9
22
|
|
@@ -974,6 +974,15 @@ module BeakerHostGenerator
|
|
974
974
|
'template' => 'ubuntu-1610-x86_64'
|
975
975
|
}
|
976
976
|
},
|
977
|
+
'ubuntu1804-64' => {
|
978
|
+
:general => {
|
979
|
+
'platform' => 'ubuntu-18.04-amd64',
|
980
|
+
'packaging_platform' => 'ubuntu-18.04-amd64'
|
981
|
+
},
|
982
|
+
:vmpooler => {
|
983
|
+
'template' => 'ubuntu-1804-x86_64'
|
984
|
+
}
|
985
|
+
},
|
977
986
|
'vro6-64' => {
|
978
987
|
:general => {
|
979
988
|
'platform' => 'sles-11-x86_64',
|
@@ -992,6 +1001,15 @@ module BeakerHostGenerator
|
|
992
1001
|
'template' => 'vro-7-x86_64'
|
993
1002
|
}
|
994
1003
|
},
|
1004
|
+
'vro73-64' => {
|
1005
|
+
:general => {
|
1006
|
+
'platform' => 'sles-11-x86_64',
|
1007
|
+
'packaging_platform' => 'sles-11-x86_64'
|
1008
|
+
},
|
1009
|
+
:vmpooler => {
|
1010
|
+
'template' => 'vro-73-x86_64'
|
1011
|
+
}
|
1012
|
+
},
|
995
1013
|
'windows2003-64' => {
|
996
1014
|
:general => {
|
997
1015
|
'platform' => 'windows-2003-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.1.
|
4
|
+
version: 1.1.8
|
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: 2018-
|
13
|
+
date: 2018-03-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|