vagrant-vsphere 0.5.1 → 0.6.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 +8 -8
- data/README.md +2 -0
- data/lib/vSphere/action.rb +21 -0
- data/lib/vSphere/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
Zjc3MmNmZjFiNTY5YzE1OGZjZWY4ZDZjMGU2MWE0MmU1YWJhY2EyNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Zjk0OTM0ZGRjYjQ4Y2FlYWViOWNjYTEwOWI4MjljOTNhMWNiZjAwOA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Yjc2NWRkYTg4Y2RlM2MwYWE3N2MyNDk3MmE5NTY3YWE0NDRkYjJkMmYyY2Qx
|
|
10
|
+
ZWQxZTMzOTI1ZWMxYTNjMjdhNzgyNWFkMDYyMTgxZTdhNWM1YjY5YzE4NTFh
|
|
11
|
+
NjY4NWI4MDhlMzk1NGM0NTFhY2Y4ZmVjZjlmZmUxOGNhNjhjNmU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZmUwZThkNDNjOTVmNDExNjMyNDQwN2I3OTBhZDE3NTZiYjYyNWYxNGJjN2Vl
|
|
14
|
+
ZjAzMDQ4NTZkZTI3ZmRmMTBhNzMyNzBjM2NmOWJjOTY3NDY4ZTRmMTFkOTUw
|
|
15
|
+
YmRlYmQxYjkxMzExN2ZjYjNkNjYwY2NhMWE1NGE2ZmU4NDljYjE=
|
data/README.md
CHANGED
|
@@ -129,6 +129,8 @@ The IP address will only be set if a customization spec name is given. The custo
|
|
|
129
129
|
* Allow cloning from VM or template
|
|
130
130
|
* 0.5.1
|
|
131
131
|
* fix rsync on Windows, adapted from [mitchellh/vagrant-aws#77](https://github.com/mitchellh/vagrant-aws/pull/77)
|
|
132
|
+
* 0.6.0
|
|
133
|
+
* add support for the `vagrant ssh -c` command
|
|
132
134
|
|
|
133
135
|
## Versioning
|
|
134
136
|
|
data/lib/vSphere/action.rb
CHANGED
|
@@ -63,6 +63,27 @@ module VagrantPlugins
|
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
end
|
|
66
|
+
|
|
67
|
+
def self.action_ssh_run
|
|
68
|
+
Vagrant::Action::Builder.new.tap do |b|
|
|
69
|
+
b.use ConfigValidate
|
|
70
|
+
b.use Call, IsCreated do |env, b2|
|
|
71
|
+
if !env[:result]
|
|
72
|
+
b2.use MessageNotCreated
|
|
73
|
+
next
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
b2.use Call, IsRunning do |env, b3|
|
|
77
|
+
if !env[:result]
|
|
78
|
+
b3.use MessageNotRunning
|
|
79
|
+
next
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
b3.use SSHRun
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
end
|
|
66
87
|
|
|
67
88
|
def self.action_up
|
|
68
89
|
Vagrant::Action::Builder.new.tap do |b|
|
data/lib/vSphere/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-vsphere
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Grauch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-11-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|