gogetit 0.20.0 → 0.20.1
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/lib/gogetit/version.rb +1 -1
- data/lib/providers/libvirt.rb +6 -8
- 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: 223de42a595049a562c56526c1e49771e9e1a77e719cad4a723684789696275b
|
|
4
|
+
data.tar.gz: a02723085f655b501f07a97366cb7ddce9e336e8eed79ea793159cc3312967b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e2caf0ffa211cd69aacdcbbd4dbbbed37188fefdc6a8736f68bcc46525f8e7397fb9dda8d36513c1150a51dfc33aedbdc87903922032893e940ff9e5a0332ef
|
|
7
|
+
data.tar.gz: 199a06a461a5bfa165282bd89cb8fb6f707999a02f89fe9a583196f7d0e222318ee97860aed8bde3edab81d45ac4cd067ffffc6a277b6f844e7fac565c65e40b
|
data/lib/gogetit/version.rb
CHANGED
data/lib/providers/libvirt.rb
CHANGED
|
@@ -192,11 +192,10 @@ module Gogetit
|
|
|
192
192
|
|
|
193
193
|
logger.info("Calling to deploy...")
|
|
194
194
|
|
|
195
|
-
distro
|
|
196
|
-
|
|
197
|
-
distro = 'xenial'
|
|
195
|
+
if options[:distro].nil? or options[:distro].empty?
|
|
196
|
+
distro = 'bionic'
|
|
198
197
|
else
|
|
199
|
-
distro = options[
|
|
198
|
+
distro = options[:distro]
|
|
200
199
|
end
|
|
201
200
|
|
|
202
201
|
maas.conn.request(:post, ['machines', system_id], \
|
|
@@ -278,11 +277,10 @@ module Gogetit
|
|
|
278
277
|
|
|
279
278
|
logger.info("Calling to deploy...")
|
|
280
279
|
|
|
281
|
-
distro
|
|
282
|
-
|
|
283
|
-
distro = 'xenial'
|
|
280
|
+
if options[:distro].nil? or options[:distro].empty?
|
|
281
|
+
distro = 'bionic'
|
|
284
282
|
else
|
|
285
|
-
distro = options[
|
|
283
|
+
distro = options[:distro]
|
|
286
284
|
end
|
|
287
285
|
|
|
288
286
|
maas.conn.request(:post, ['machines', system_id], \
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gogetit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.20.
|
|
4
|
+
version: 0.20.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Don Draper
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-07-
|
|
11
|
+
date: 2018-07-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|