Sha256: 6cd28fe336808d947a5c60fa565b3e1a3885d48f7ae1257d10556e0cb448d8fa

Contents?: true

Size: 620 Bytes

Versions: 4

Compression:

Stored size: 620 Bytes

Contents

require "log4r"

module VagrantPlugins
  module OpenStack
    module Action
      # This deletes the running server, if there is one.
      class SuspendServer
        def initialize(app, env)
          @app    = app
          @logger = Log4r::Logger.new("vagrant_openstack::action::suspend_server")
        end

        def call(env)
          if env[:machine].id
            env[:ui].info(I18n.t("vagrant_openstack.suspending_server"))
            server = env[:openstack_compute].servers.get(env[:machine].id)
            server.suspend
          end

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-openstack-plugin-0.6.1 lib/vagrant-openstack-plugin/action/suspend_server.rb
vagrant-openstack-plugin-0.6.0 lib/vagrant-openstack-plugin/action/suspend_server.rb
vagrant-openstack-plugin-0.5.0 lib/vagrant-openstack-plugin/action/suspend_server.rb
vagrant-openstack-plugin-0.4.1 lib/vagrant-openstack-plugin/action/suspend_server.rb