beaker-hostgenerator 1.1.16 → 1.1.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/beaker-hostgenerator/data.rb +20 -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: 6413ca94b4a4fd39b58485bba0499db1b4cf66b8
|
4
|
+
data.tar.gz: e513c675488d121eb24ba40ebb35de3e49c01a9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51e31c1bc757b613be90b38b020ff2735c41a33872885d00bd813973d91bcb15934002a570a793221210af210f7e9cf31ec2b22aa6b3d7bc4840cdf457bfa4f9
|
7
|
+
data.tar.gz: 7796ac2aee7ff09af715f4698f21387da282b29cf03cb10d545aa435cb7e1681709abe36f3527f418a3755b61ac15bb07e57a99043c3f98770f1578b7b319191
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,14 @@ 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.17] - 2018-10-05
|
8
|
+
- Add platforms:
|
9
|
+
- windows2019_core-64
|
10
|
+
- windows2019_core-6432
|
11
|
+
|
12
|
+
## [1.1.16] - 2018-09-04
|
13
|
+
- Install iproute2 on ubuntu18.04 for containers
|
14
|
+
|
7
15
|
## [1.1.15] - 2018-08-16
|
8
16
|
- Add platforms:
|
9
17
|
- panos61-64
|
@@ -1401,6 +1401,26 @@ module BeakerHostGenerator
|
|
1401
1401
|
'template' => 'win-2019-x86_64'
|
1402
1402
|
}
|
1403
1403
|
},
|
1404
|
+
'windows2019_core-64' => {
|
1405
|
+
:general => {
|
1406
|
+
'platform' => 'windows-2019-64',
|
1407
|
+
'packaging_platform' => 'windows-2012-x64',
|
1408
|
+
'ruby_arch' => 'x64'
|
1409
|
+
},
|
1410
|
+
:vmpooler => {
|
1411
|
+
'template' => 'win-2019-core-x86_64'
|
1412
|
+
}
|
1413
|
+
},
|
1414
|
+
'windows2019_core-6432' => {
|
1415
|
+
:general => {
|
1416
|
+
'platform' => 'windows-2019-64',
|
1417
|
+
'packaging_platform' => 'windows-2012-x64',
|
1418
|
+
'ruby_arch' => 'x86'
|
1419
|
+
},
|
1420
|
+
:vmpooler => {
|
1421
|
+
'template' => 'win-2019-core-x86_64'
|
1422
|
+
}
|
1423
|
+
},
|
1404
1424
|
'windows7-64' => {
|
1405
1425
|
:general => {
|
1406
1426
|
'platform' => 'windows-7-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.17
|
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-10-05 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|