Class: VagrantPlugins::Vmpooler::Action::HardRebootServer

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-vmpooler/action/hard_reboot_server.rb

Overview

This hard reboots a running server, if there is one.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ HardRebootServer

Returns a new instance of HardRebootServer.



8
9
10
11
# File 'lib/vagrant-vmpooler/action/hard_reboot_server.rb', line 8

def initialize(app, env)
  @app    = app
  @logger = Log4r::Logger.new("vagrant_vmpooler::action::hard_reboot_server")
end

Instance Method Details

#call(env) ⇒ Object



13
14
15
16
17
18
19
20
# File 'lib/vagrant-vmpooler/action/hard_reboot_server.rb', line 13

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

  end

  @app.call(env)
end