beaker-hostgenerator 1.1.17 → 1.1.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/beaker-hostgenerator/data.rb +17 -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: 5110032a88342433d302664253046ae27f81fb55
|
4
|
+
data.tar.gz: edf7befbac37263f45e12aa2c9626e57cb36b885
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a406d5fdbaf602e6704ff727365baa0fa5a26f23a9faade5ebed646e8f45235af24d7e6b5e4f802120f8fa3b1fb4d1305c5e73857d8290a3f7dadc7a8b23afaa
|
7
|
+
data.tar.gz: 82654883c755d2354f955865211f5d0dd80f15ca5c486f7ef086016e03344651c92fafc3e8a862f2dd9dbb37de565c22ddbf03a7ad7632fd746911ad8760ec7e
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ 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.18] - 2018-10-10
|
8
|
+
- Add platform:
|
9
|
+
- ubuntu1810-64
|
10
|
+
|
7
11
|
## [1.1.17] - 2018-10-05
|
8
12
|
- Add platforms:
|
9
13
|
- windows2019_core-64
|
@@ -1094,6 +1094,23 @@ module BeakerHostGenerator
|
|
1094
1094
|
'template' => 'ubuntu-1804-x86_64'
|
1095
1095
|
}
|
1096
1096
|
},
|
1097
|
+
'ubuntu1810-64' => {
|
1098
|
+
:general => {
|
1099
|
+
'platform' => 'ubuntu-18.10-amd64',
|
1100
|
+
'packaging_platform' => 'ubuntu-18.10-amd64'
|
1101
|
+
},
|
1102
|
+
:docker => {
|
1103
|
+
'docker_image_commands' => [
|
1104
|
+
'systemctl mask getty@tty1.service getty-static.service',
|
1105
|
+
'apt-get install -y net-tools wget locales apt-transport-https iproute2',
|
1106
|
+
'locale-gen en_US.UTF-8',
|
1107
|
+
'echo LANG=en_US.UTF-8 > /etc/default/locale'
|
1108
|
+
]
|
1109
|
+
},
|
1110
|
+
:vmpooler => {
|
1111
|
+
'template' => 'ubuntu-1810-x86_64'
|
1112
|
+
}
|
1113
|
+
},
|
1097
1114
|
'vro6-64' => {
|
1098
1115
|
:general => {
|
1099
1116
|
'platform' => 'sles-11-x86_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.18
|
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-10-
|
13
|
+
date: 2018-10-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|