vagrant-hostmanager 1.8.2 → 1.8.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/vagrant-hostmanager/action/update_all.rb +4 -1
- data/lib/vagrant-hostmanager/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: a3d8f805fa0ec79ec24be78ee547b25bf9460303
|
|
4
|
+
data.tar.gz: be106b9fd7d5e077e1ab535b5e0cd9347a69b848
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20b0fc3e83461bccdeab552423bb53cf33988511cfe4c532892c3c1dcdf804e0a7276a654501ce0c51da30fd06296a0c004c7d161e411d8625309900d30f6cd5
|
|
7
|
+
data.tar.gz: b4205bd934ecbcf3a32c6149c82da793d2bee79c82b0d7f105c30edda028a8119b0608832c74b1a0fa7c45840451a8089292a41cdc61db8d2dba7dea7d5ae5b3
|
data/README.md
CHANGED
|
@@ -161,7 +161,7 @@ Compatibility
|
|
|
161
161
|
-------------
|
|
162
162
|
This Vagrant plugin has been tested with the following technology.
|
|
163
163
|
|
|
164
|
-
Date Tested | Vagrant Version | vagrant-hostmanager Version | Host (Workstation) Operating System | Guest (
|
|
164
|
+
Date Tested | Vagrant Version | vagrant-hostmanager Version | Host (Workstation) Operating System | Guest (VirtualBox) Operating System
|
|
165
165
|
------------|-----------------|-----------------------------|-------------------------------------|--------------------------------------
|
|
166
166
|
03/23/2016 | 1.8.1 | 1.8.1 | Ubuntu 14.04 LTS | CentOS 7.2
|
|
167
167
|
03/22/2016 | 1.8.1 | 1.8.1 | OS X 10.11.4 | CentOS 7.2
|
|
@@ -32,7 +32,10 @@ module VagrantPlugins
|
|
|
32
32
|
@global_env.active_machines.each do |name, p|
|
|
33
33
|
if p == @provider
|
|
34
34
|
machine = @global_env.machine(name, p)
|
|
35
|
-
|
|
35
|
+
state = machine.state
|
|
36
|
+
if state.short_description.eql? 'running'
|
|
37
|
+
@updater.update_guest(machine)
|
|
38
|
+
end
|
|
36
39
|
end
|
|
37
40
|
end
|
|
38
41
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-hostmanager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shawn Dahlen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-07-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|