nova-dsl 0.1.2 → 0.1.3
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.
- data/Gemfile +1 -1
- data/example.sh +3 -2
- data/examples/nova_list.rb +1 -1
- data/examples/simple_provision.rb +4 -4
- data/lib/nova-dsl.rb +3 -1
- data/lib/nova/wrapper/nova_console_wrapper.rb +4 -1
- data/lib/version.rb +1 -1
- metadata +2 -2
data/Gemfile
CHANGED
data/example.sh
CHANGED
data/examples/nova_list.rb
CHANGED
data/lib/nova-dsl.rb
CHANGED
@@ -22,10 +22,13 @@ module NovaDsl
|
|
22
22
|
|
23
23
|
configs[:security_groups] ||= %w(default)
|
24
24
|
|
25
|
-
Common::system_call(:source => configs[:source]) {
|
25
|
+
results = Common::system_call(:source => configs[:source]) {
|
26
26
|
"/usr/local/bin/nova boot --image #{configs[:image]} --flavor #{configs[:flavor]} --key_name #{configs[:key]} --security_groups #{configs[:security_groups]*','} #{configs[:name]}"
|
27
27
|
|
28
28
|
}
|
29
|
+
|
30
|
+
LOGGER.debug("Provision output:")
|
31
|
+
LOGGER.debug("#{results[0][:out]}")
|
29
32
|
end
|
30
33
|
|
31
34
|
def nova_list(configs = {})
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nova-dsl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-07-19 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Call this from a line nova-client
|
15
15
|
email:
|