lib/vagrant-ovirt3/action.rb in vagrant-ovirt3-1.9.1 vs lib/vagrant-ovirt3/action.rb in vagrant-ovirt3-1.9.2

- old
+ new

@@ -97,11 +97,13 @@ b2.use MessageNotCreated next end b2.use ConnectOVirt - b3.use ProvisionerCleanup, :before if defined?(ProvisionerCleanup) + b2.use ProvisionerCleanup, :before if defined?(ProvisionerCleanup) + b2.use HaltVM + b2.use WaitTillDown b2.use DestroyVM end end end @@ -211,9 +213,10 @@ autoload :SuspendVM, action_root.join("suspend_vm") autoload :DestroyVM, action_root.join("destroy_vm") autoload :ReadState, action_root.join("read_state") autoload :ReadSSHInfo, action_root.join("read_ssh_info") autoload :WaitTillUp, action_root.join("wait_till_up") + autoload :WaitTillDown, action_root.join("wait_till_down") autoload :SyncFolders, action_root.join("sync_folders") autoload :MessageAlreadyCreated, action_root.join("message_already_created") autoload :MessageAlreadyUp, action_root.join("message_already_up") autoload :MessageNotUp, action_root.join("message_not_up") autoload :MessageSavingState, action_root.join("message_saving_state")