beaker-hostgenerator 1.9.0 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/beaker-hostgenerator/data.rb +12 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97cadcf89d6cdfd3c54307a1ef316fd34e8dc54f8e1acdd7682bde775d352eff
|
4
|
+
data.tar.gz: 9ef354d62b1223c023d2f0e45d461a6206572bf7af2be11b4f6c07c26c2b4609
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cd9e987519f3356ccb53ecb24fd54120e6157952bed7d1218b5e8dda7773d608046371eeafafadb16d98d15a682d624ce3f9ca1d9145878a798c43679219d34
|
7
|
+
data.tar.gz: 446ed14038fa3d651975d4e004e33057ccf5f83120914b57dbc5e3113618791725788b660aa3a73c6e277f3a34db9672f6dfda2903d980e3422d851e076f46e4
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,15 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
## [1.
|
5
|
+
## [1.10.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.10.0) (2021-12-10)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.9.0...1.10.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Add Arch Linux support [\#191](https://github.com/voxpupuli/beaker-hostgenerator/pull/191) ([ekohl](https://github.com/ekohl))
|
12
|
+
|
13
|
+
## [1.9.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.9.0) (2021-12-08)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.8.0...1.9.0)
|
8
16
|
|
@@ -224,6 +224,17 @@ module BeakerHostGenerator
|
|
224
224
|
'template' => 'amazon-7-arm64'
|
225
225
|
}
|
226
226
|
},
|
227
|
+
'archlinuxrolling-64' => {
|
228
|
+
:general => {
|
229
|
+
'platform' => 'archlinux-rolling-x64',
|
230
|
+
},
|
231
|
+
:vagrant => {
|
232
|
+
'box' => 'archlinux/archlinux',
|
233
|
+
},
|
234
|
+
:docker => {
|
235
|
+
'image' => 'archlinux/archlinux',
|
236
|
+
}
|
237
|
+
},
|
227
238
|
'arista4-32' => {
|
228
239
|
:general => {
|
229
240
|
'platform' => 'eos-4-i386',
|
@@ -1744,6 +1755,7 @@ module BeakerHostGenerator
|
|
1744
1755
|
}
|
1745
1756
|
})
|
1746
1757
|
|
1758
|
+
result['archlinux-64'] = result['archlinuxrolling-64']
|
1747
1759
|
result
|
1748
1760
|
end
|
1749
1761
|
|
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.
|
4
|
+
version: 1.10.0
|
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: 2021-12-
|
13
|
+
date: 2021-12-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|