vagrant-cloudstack 0.6.0 → 0.7.0
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 +4 -0
- data/README.md +1 -1
- data/build_rpm.sh +1 -1
- data/lib/vagrant-cloudstack/config.rb +3 -2
- data/lib/vagrant-cloudstack/version.rb +1 -1
- data/spec/vagrant-cloudstack/config_spec.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: 1b01a67b4a7935d8218e0fd82422bd38dc5dc0c9
|
|
4
|
+
data.tar.gz: bc847f6a39372eb7ab370bc811974a63c3e36af1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b6ca31291fc783ed3abc0ef42573af04563d8b77db8f9366973e94f3186a651feddd3d8218ef459449fe5135370ff4b1519d0dd1f2db00dc06328ab5618df7c
|
|
7
|
+
data.tar.gz: 9190c62333d247ec463b79a7b8645378e1afa23d83a62599fc8b2c6b9cee6c4a71a95e1de8bb7688ebb9b520c81bb21b3d1b5f1ee5f662bf0482c71ad41a61cc
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://travis-ci.org/klarna/vagrant-cloudstack)
|
|
4
4
|
[](http://badge.fury.io/rb/vagrant-cloudstack)
|
|
5
5
|
[](https://gemnasium.com/klarna/vagrant-cloudstack)
|
|
6
|
-
[](https://codeclimate.com/github/klarna/vagrant-
|
|
6
|
+
[](https://codeclimate.com/github/klarna/vagrant-cloudstack)
|
|
7
7
|
[](https://coveralls.io/r/klarna/vagrant-cloudstack)
|
|
8
8
|
|
|
9
9
|
This is a fork of [mitchellh AWS Provider](https://github.com/mitchellh/vagrant-aws/).
|
data/build_rpm.sh
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
-
VERSION=0.
|
|
2
|
+
VERSION=0.7.0
|
|
3
3
|
mkdir -p /tmp/vagrant-cloudstack-build_rpm.$$/vagrant-cloudstack-$VERSION
|
|
4
4
|
cp -r . /tmp/vagrant-cloudstack-build_rpm.$$/vagrant-cloudstack-$VERSION/
|
|
5
5
|
tar -C /tmp/vagrant-cloudstack-build_rpm.$$/ -czf ~/rpmbuild/SOURCES/vagrant-cloudstack-$VERSION.tar.gz vagrant-cloudstack-$VERSION
|
|
@@ -234,8 +234,9 @@ module VagrantPlugins
|
|
|
234
234
|
# Port must be nil, since we can't default that
|
|
235
235
|
@port = nil if @port == UNSET_VALUE
|
|
236
236
|
|
|
237
|
-
#
|
|
238
|
-
|
|
237
|
+
# We default the scheme to whatever the user has specifid in the .fog file
|
|
238
|
+
# *OR* whatever is default for the provider in the fog library
|
|
239
|
+
@scheme = nil if @scheme == UNSET_VALUE
|
|
239
240
|
|
|
240
241
|
# Try to get access keys from environment variables, they will
|
|
241
242
|
# default to nil if the environment variables are not present
|
|
@@ -21,7 +21,7 @@ describe VagrantPlugins::Cloudstack::Config do
|
|
|
21
21
|
its("host") { should be_nil }
|
|
22
22
|
its("path") { should be_nil }
|
|
23
23
|
its("port") { should be_nil }
|
|
24
|
-
its("scheme") { should
|
|
24
|
+
its("scheme") { should be_nil }
|
|
25
25
|
its("api_key") { should be_nil }
|
|
26
26
|
its("secret_key") { should be_nil }
|
|
27
27
|
its("instance_ready_timeout") { should == 120 }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-cloudstack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mitchell Hashimoto
|
|
@@ -18,7 +18,7 @@ authors:
|
|
|
18
18
|
autorequire:
|
|
19
19
|
bindir: bin
|
|
20
20
|
cert_chain: []
|
|
21
|
-
date: 2014-
|
|
21
|
+
date: 2014-06-17 00:00:00.000000000 Z
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|
|
24
24
|
name: fog
|