vagrant-lxc-ng/lib/vagrant-lxc/action/forced_halt.rb
Fabio Rehm a12391638a Change logging to match lxc "verbiage"
This should make it clear that we are dealing with LXC containers and
not VBox VMs.
2013-04-18 03:27:27 -03:00

23 lines
537 B
Ruby

module Vagrant
module LXC
module Action
class ForcedHalt
def initialize(app, env)
@app = app
end
def call(env)
if env[:machine].provider.state.id == :running
env[:ui].info I18n.t("vagrant_lxc.messages.force_shutdown")
# TODO: Driver#halt is kinda graceful as well, if it doesn't
# work we can issue a lxc-stop.
env[:machine].provider.driver.halt
end
@app.call(env)
end
end
end
end
end