You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
489 B
26 lines
489 B
module Vagrant
|
|
module Lxd
|
|
module Action
|
|
class Stop
|
|
def initialize(app, env)
|
|
@app = app
|
|
@logger = Log4r::Logger.new("vagrant::lxd::action::stop")
|
|
end
|
|
|
|
def call(env)
|
|
driver = env[:machine].provider.driver
|
|
|
|
if driver.container?
|
|
if driver.state == :running
|
|
driver.stop
|
|
end
|
|
end
|
|
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# vim: set et ts=2 sw=2:
|