beaker-hostgenerator 1.1.4 → 1.1.5

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
- ZTExYTU5OTkyMDVjZWRhYjgzNDU0YTA1NWQwYTk5M2VmYjdiYTk0Yw==
4
+ YTI0YjFhZDFhMTc4YTE5ODIxODlhYzc5ODBiZDYxZTg5MDRmZWI5OA==
5
5
  data.tar.gz: !binary |-
6
- Y2VhZjE5MmZjYjNmYWYzYThmY2JlZWYyYzNkYjgxZjEyMjM4YWFhNA==
6
+ YTY3Njc4Yzk2ODMzYTBmODczNTI0NmMzNzE2YzNkNTczMGZmOTRhYQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OGJmNGQ5MjA2MzBhOGY0OGVhOTNkZTc0OTFmYjI5NDRkNWU0N2IxZWI0ODcx
10
- ZTExMWRlZjVmNTZmYWQyODBlZTFmZTk1MDEwMzYxNTVlMzkwMDMwMmEyMjQ3
11
- N2U3ZTk5NzkyYTk0OGMwY2RiZGRjZjRjNzBlYTU2NGYyNTI5MmQ=
9
+ MmQ5MTE2NWZmZDJlNjM3ZGQxZTJhOTI5ODA5MTQzOTI3OWY4M2UwZmNlZWE1
10
+ MmY1YjMxZjI4ZjM3OTZlYmY2NDY0MjA0NTVhYTVhZjQ1MTFmMmQwMzQwMzcy
11
+ Mzk0M2M5ZDkyMTdlZjM3YjIyODIwYmIzOTBiODM0YWE4MGY3YzI=
12
12
  data.tar.gz: !binary |-
13
- YmUyMzUzYTk0Mzg5NTY5NjhjYzI2YmViMDRhNTJhZGY1Yjg4OTJiMWQ3NDMz
14
- OTE1MjUxYzZhNmEzN2I3Yzc0N2Q1YmVjODAzMjBmZmE2YjVmNGJhMTBjNThl
15
- YTY5NzhlYTdiMzhkMmJjNGY2MjVmMDI5MTQzN2JmOWMxYzE1YWI=
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',
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '1.1.4'
3
+ STRING = '1.1.5'
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.1.4
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: 2017-11-15 00:00:00.000000000 Z
13
+ date: 2018-01-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest