beaker-hostgenerator 1.1.13 → 1.1.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +24 -0
- data/lib/beaker-hostgenerator/data.rb +19 -1
- 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: b5580dd9b8b3d88b603f00271471668b2e61e5e1
|
4
|
+
data.tar.gz: 23880a5bad0b9e1a155aa5c8aadd3ca5a7077264
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec4e2cef17caafc4b4b015fa05da6c2fcb9860bb3496e0f3c1df5ebf5bfb8cc30d39147beba2a0a5e566d981c6d1f55f09f95266bd8a248b3e1803544c65fe83
|
7
|
+
data.tar.gz: 5f847707f8b998cf969aa364d6b9d7acdc18af3cefcf1fd05875179f1fa8f80a892ed0aff8e5b8260016e41a0697215ffd00eab703ed46d123f2455ebe82bb7f
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,30 @@ 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
|
+
|
8
|
+
## [1.1.14] - 2018-07-13
|
9
|
+
- Add docker image commands for Ubuntu 18.04
|
10
|
+
- Add platform:
|
11
|
+
- sles15-64
|
12
|
+
|
13
|
+
## [1.1.13] - 2018-06-01
|
14
|
+
- pin fakefs to < 0.14.0 for ruby 2.2
|
15
|
+
- Add platforms:
|
16
|
+
- windows2019-64
|
17
|
+
- windows2019-6432
|
18
|
+
|
19
|
+
## [1.1.12] - 2018-04-24
|
20
|
+
- Add platforms:
|
21
|
+
- vro71-64
|
22
|
+
- vro74-64
|
23
|
+
|
24
|
+
## [1.1.11] - 2018-04-23
|
25
|
+
- Add platform:
|
26
|
+
- fedora28-64
|
27
|
+
|
28
|
+
## [1.1.10] - 2018-04-09
|
29
|
+
- Added docker hypervisor support
|
30
|
+
|
7
31
|
## [1.1.9] - 2018-03-29
|
8
32
|
- Rename platforms redhat-fips packaging_platform to redhatfips
|
9
33
|
|
@@ -824,6 +824,15 @@ module BeakerHostGenerator
|
|
824
824
|
'template' => 'sles-12-power8'
|
825
825
|
}
|
826
826
|
},
|
827
|
+
'sles15-64' => {
|
828
|
+
:general => {
|
829
|
+
'platform' => 'sles-15-x86_64',
|
830
|
+
'packaging_platform' => 'sles-15-x86_64'
|
831
|
+
},
|
832
|
+
:vmpooler => {
|
833
|
+
'template' => 'sles-15-x86_64'
|
834
|
+
}
|
835
|
+
},
|
827
836
|
'solaris10-32' => {
|
828
837
|
:general => {
|
829
838
|
'platform' => 'solaris-10-i386',
|
@@ -1011,7 +1020,8 @@ module BeakerHostGenerator
|
|
1011
1020
|
'docker_image_commands' => [
|
1012
1021
|
'systemctl mask getty@tty1.service getty-static.service',
|
1013
1022
|
'apt-get install -y net-tools wget locales apt-transport-https',
|
1014
|
-
'locale-gen en_US.UTF-8'
|
1023
|
+
'locale-gen en_US.UTF-8',
|
1024
|
+
'echo LANG=en_US.UTF-8 > /etc/default/locale'
|
1015
1025
|
]
|
1016
1026
|
},
|
1017
1027
|
:vmpooler => {
|
@@ -1048,6 +1058,14 @@ module BeakerHostGenerator
|
|
1048
1058
|
'platform' => 'ubuntu-18.04-amd64',
|
1049
1059
|
'packaging_platform' => 'ubuntu-18.04-amd64'
|
1050
1060
|
},
|
1061
|
+
:docker => {
|
1062
|
+
'docker_image_commands' => [
|
1063
|
+
'systemctl mask getty@tty1.service getty-static.service',
|
1064
|
+
'apt-get install -y net-tools wget locales apt-transport-https',
|
1065
|
+
'locale-gen en_US.UTF-8',
|
1066
|
+
'echo LANG=en_US.UTF-8 > /etc/default/locale'
|
1067
|
+
]
|
1068
|
+
},
|
1051
1069
|
:vmpooler => {
|
1052
1070
|
'template' => 'ubuntu-1804-x86_64'
|
1053
1071
|
}
|
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.14
|
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-07-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|