Sha256: b00d510710fa414e848c0dfc243c5a1d8ff6817c2b01dd5cc3eca89fadaae186

Contents?: true

Size: 722 Bytes

Versions: 9

Compression:

Stored size: 722 Bytes

Contents

require "log4r"

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

        def call(env)
          if env[:machine].id
            env[:ui].info(I18n.t("vagrant_openstack.pausing_server"))

            # TODO: Validate the fact that we get a server back from the API.
            server = env[:openstack_compute].servers.get(env[:machine].id)
            env[:openstack_compute].pause_server(server.id)
          end

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

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
vagrant-openstack-plugin-tom-0.12.0 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.12.0 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.11.1 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.11.0 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.10.0 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.9.1 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.9.0 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.8.0 lib/vagrant-openstack-plugin/action/pause_server.rb
vagrant-openstack-plugin-0.7.0 lib/vagrant-openstack-plugin/action/pause_server.rb