2013-03-03 05:24:05 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
module Action
|
|
|
|
class Boot < BaseAction
|
|
|
|
def call(env)
|
2013-03-03 07:37:07 +00:00
|
|
|
config = env[:machine].provider_config
|
|
|
|
env[:machine].provider.container.start(config)
|
2013-03-03 05:24:05 +00:00
|
|
|
@app.call env
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|