beaker-hostgenerator 1.1.22 → 1.1.23
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 +4 -4
- data/CHANGELOG.md +11 -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: e081fe2f70129123c631e69b37455c5925d6a161
|
|
4
|
+
data.tar.gz: 4ead61dfb745b5ecfe14dce9cbb9cdf94ce368c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72e9ef9d491a760dc221411ab9d7b93a92646270eb81c001cf787a36eeea588e21a94373a19320df4d765cc338ce9a47363e365690ecdf72526e5754fad7e81c
|
|
7
|
+
data.tar.gz: f3c918f11101e2ce05e6344e82a281dd2564a05a7cd94442900c6f8aa2bf8b2e3802a0bdd7c0b9767eb9317a2cb1a104ca6d995349b8e0d50906dfee2b0a2ae0
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ 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.23] - 2018-12-13
|
|
8
|
+
- Add platforms:
|
|
9
|
+
- redhat8-64
|
|
10
|
+
- osx1014-64
|
|
11
|
+
|
|
12
|
+
## [1.1.22] - 2018-11-21
|
|
13
|
+
- Add vagrant hypervisor for debian plaforms
|
|
14
|
+
|
|
15
|
+
## [1.1.21] - 2018-11-19
|
|
16
|
+
- Disable getty when using docker
|
|
17
|
+
|
|
7
18
|
## [1.1.20] - 2018-11-14
|
|
8
19
|
- Add gnupg to docker_image_commands for debian9-64
|
|
9
20
|
- Add platform:
|
|
@@ -664,6 +664,15 @@ module BeakerHostGenerator
|
|
|
664
664
|
'template' => 'osx-1013-x86_64'
|
|
665
665
|
}
|
|
666
666
|
},
|
|
667
|
+
'osx1014-64' => {
|
|
668
|
+
:general => {
|
|
669
|
+
'platform' => 'osx-10.14-x86_64',
|
|
670
|
+
'packaging_platform' => 'osx-10.14-x86_64'
|
|
671
|
+
},
|
|
672
|
+
:vmpooler => {
|
|
673
|
+
'template' => 'osx-1014-x86_64'
|
|
674
|
+
}
|
|
675
|
+
},
|
|
667
676
|
'redhat4-32' => {
|
|
668
677
|
:general => {
|
|
669
678
|
'platform' => 'el-4-i386'
|
|
@@ -767,6 +776,15 @@ module BeakerHostGenerator
|
|
|
767
776
|
'template' => 'redhat-7-x86_64'
|
|
768
777
|
}
|
|
769
778
|
},
|
|
779
|
+
'redhat8-64' => {
|
|
780
|
+
:general => {
|
|
781
|
+
'platform' => 'el-8-x86_64',
|
|
782
|
+
'packaging_platform' => 'el-8-x86_64'
|
|
783
|
+
},
|
|
784
|
+
:vmpooler => {
|
|
785
|
+
'template' => 'redhat-8-x86_64'
|
|
786
|
+
}
|
|
787
|
+
},
|
|
770
788
|
'scientific5-32' => {
|
|
771
789
|
:general => {
|
|
772
790
|
'platform' => 'el-5-i386',
|
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.23
|
|
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-12-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: minitest
|