Class: VagrantPlugins::Openstack::Action::Suspend

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-openstack-provider/action/suspend.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ Suspend

Returns a new instance of Suspend.



5
6
7
8
# File 'lib/vagrant-openstack-provider/action/suspend.rb', line 5

def initialize(app, _env)
  @app = app
  @logger = Log4r::Logger.new('vagrant_openstack::action::suspend_server')
end

Instance Method Details

#call(env) ⇒ Object



10
11
12
13
14
15
16
17
18
# File 'lib/vagrant-openstack-provider/action/suspend.rb', line 10

def call(env)
  if env[:machine].id
    @logger.info "Saving VM #{env[:machine].id} state and suspending execution..."
    env[:ui].info I18n.t('vagrant.actions.vm.suspend.suspending')
    env[:openstack_client].nova.suspend_server(env, env[:machine].id)
  end

  @app.call(env)
end