beaker-hostgenerator 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGELOG.md +3 -0
- data/lib/beaker-hostgenerator/data.rb +31 -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
|
+
YTI0YjFhZDFhMTc4YTE5ODIxODlhYzc5ODBiZDYxZTg5MDRmZWI5OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTY3Njc4Yzk2ODMzYTBmODczNTI0NmMzNzE2YzNkNTczMGZmOTRhYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MmQ5MTE2NWZmZDJlNjM3ZGQxZTJhOTI5ODA5MTQzOTI3OWY4M2UwZmNlZWE1
|
10
|
+
MmY1YjMxZjI4ZjM3OTZlYmY2NDY0MjA0NTVhYTVhZjQ1MTFmMmQwMzQwMzcy
|
11
|
+
Mzk0M2M5ZDkyMTdlZjM3YjIyODIwYmIzOTBiODM0YWE4MGY3YzI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjRiMjI1OGYxNzg3ZDMyNjc3ZTUzMDRhMDgyMTY3NGI0YzdmM2M1MmEyYTg5
|
14
|
+
ZjM1ZDM4MDEzZGNiYzJjMzhmZmRlY2Q5Nzg2YjM3ZWZhYWY3NWJiMzJlNjE1
|
15
|
+
ZGFjN2I2ODFhYjM5MzYwOGIyZGI0MjI2Yzk5MDI4M2ZlNTdkY2Q=
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,9 @@ 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.5] - 2018-01-05
|
8
|
+
- Add support for amazon7 (AmazonLinux v2)
|
9
|
+
|
7
10
|
## [1.1.4] - 2017-11-15
|
8
11
|
- Update abs template string for AARCH64
|
9
12
|
|
@@ -117,6 +117,15 @@ module BeakerHostGenerator
|
|
117
117
|
'template' => 'amazon-6-x86_64'
|
118
118
|
}
|
119
119
|
},
|
120
|
+
'amazon7-64' => {
|
121
|
+
:general => {
|
122
|
+
'platform' => 'el-7-x86_64',
|
123
|
+
'packaging_platform' => 'el-7-x86_64'
|
124
|
+
},
|
125
|
+
:abs => {
|
126
|
+
'template' => 'amazon-7-x86_64'
|
127
|
+
}
|
128
|
+
},
|
120
129
|
'arista4-32' => {
|
121
130
|
:general => {
|
122
131
|
'platform' => 'eos-4-i386',
|
@@ -1125,6 +1134,28 @@ module BeakerHostGenerator
|
|
1125
1134
|
'template' => 'win-2012r2-ja-x86_64'
|
1126
1135
|
}
|
1127
1136
|
},
|
1137
|
+
'windows2012r2_fr-64' => {
|
1138
|
+
:general => {
|
1139
|
+
'platform' => 'windows-2012r2-64',
|
1140
|
+
'packaging_platform' => 'windows-2012-x64',
|
1141
|
+
'ruby_arch' => 'x64'
|
1142
|
+
},
|
1143
|
+
:vmpooler => {
|
1144
|
+
'template' => 'win-2012r2-fr-x86_64',
|
1145
|
+
'user' => 'Administrateur'
|
1146
|
+
}
|
1147
|
+
},
|
1148
|
+
'windows2012r2_fr-6432' => {
|
1149
|
+
:general => {
|
1150
|
+
'platform' => 'windows-2012r2-64',
|
1151
|
+
'packaging_platform' => 'windows-2012-x64',
|
1152
|
+
'ruby_arch' => 'x86'
|
1153
|
+
},
|
1154
|
+
:vmpooler => {
|
1155
|
+
'template' => 'win-2012r2-fr-x86_64',
|
1156
|
+
'user' => 'Administrateur'
|
1157
|
+
}
|
1158
|
+
},
|
1128
1159
|
'windows2012r2_core-64' => {
|
1129
1160
|
:general => {
|
1130
1161
|
'platform' => 'windows-2012r2-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.5
|
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:
|
13
|
+
date: 2018-01-05 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|