2013-03-03 05:24:05 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
module Action
|
|
|
|
class Create < BaseAction
|
|
|
|
def call(env)
|
2013-03-29 05:17:34 +00:00
|
|
|
base_name = env[:root_path].basename.to_s
|
|
|
|
base_name.gsub!(/[^-a-z0-9_]/i, "")
|
|
|
|
|
2013-03-29 15:24:37 +00:00
|
|
|
target_rootfs_path = env[:machine].provider_config.target_rootfs_path
|
|
|
|
|
|
|
|
machine_id = env[:machine].provider.container.create(base_name, target_rootfs_path, env[:machine].box.metadata)
|
2013-03-03 05:24:05 +00:00
|
|
|
env[:machine].id = machine_id
|
|
|
|
env[:just_created] = true
|
|
|
|
@app.call env
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|