From 96f17c0645d65aff3c77e69f8065347245f2b9a2 Mon Sep 17 00:00:00 2001 From: Stefan Seifried Date: Sat, 9 Jan 2021 12:13:38 +0100 Subject: [PATCH] fixed doule disconnect on reload due to use of with_ovirt --- lib/vagrant-ovirt4/action.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-ovirt4/action.rb b/lib/vagrant-ovirt4/action.rb index 32fcf28..5157e65 100755 --- a/lib/vagrant-ovirt4/action.rb +++ b/lib/vagrant-ovirt4/action.rb @@ -168,7 +168,7 @@ def self.action_halt end def self.action_reload - with_ovirt do |env, b| + Vagrant::Action::Builder.new.tap do |b| b.use action_halt b.use action_up end