audiolize/vagrant-softlayer

View on GitHub
lib/vagrant-softlayer/action/destroy_instance.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VagrantPlugins
  module SoftLayer
    module Action
      # This deletes the running instance.
      class DestroyInstance
        include Util::Warden

        def initialize(app, env)
          @app = app
        end

        def call(env)
          env[:ui].info I18n.t("vagrant_softlayer.vm.destroying")
          
          sl_warden { env[:sl_machine].deleteObject }
          env[:machine].id = nil

          @app.call(env)
        end
      end
    end
  end
end