Fixes #209
This commit is contained in:
parent
df9d315320
commit
4ae7655be4
|
@ -33,7 +33,7 @@ module VagrantPlugins
|
||||||
if p == @provider
|
if p == @provider
|
||||||
machine = @global_env.machine(name, p)
|
machine = @global_env.machine(name, p)
|
||||||
state = machine.state
|
state = machine.state
|
||||||
if state.short_description.eql? 'active' || 'running'
|
if ['active','running'].include?(state.short_description)
|
||||||
@updater.update_guest(machine)
|
@updater.update_guest(machine)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
module VagrantPlugins
|
module VagrantPlugins
|
||||||
module HostManager
|
module HostManager
|
||||||
VERSION = '1.8.4'
|
VERSION = '1.8.5'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue