We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e34333 commit 076cca4Copy full SHA for 076cca4
lib/vagrant-hostmanager/action/update_all.rb
@@ -32,7 +32,10 @@ def call(env)
32
@global_env.active_machines.each do |name, p|
33
if p == @provider
34
machine = @global_env.machine(name, p)
35
- @updater.update_guest(machine)
+ state = machine.state
36
+ if state.short_description.eql? 'running'
37
+ @updater.update_guest(machine)
38
+ end
39
end
40
41
0 commit comments