Sha256: c2c9a3adfb7bea30224a502ad57a327c765b17c9df0bb11e37e370f69f166686
Contents?: true
Size: 642 Bytes
Versions: 1
Compression:
Stored size: 642 Bytes
Contents
module Vagrant module LXC module Action class Create def initialize(app, env) @app = app end def call(env) container_name = "#{env[:root_path].basename}_#{env[:machine].name}" container_name.gsub!(/[^-a-z0-9_]/i, "") container_name << "-#{Time.now.to_i}" env[:machine].provider.driver.create( container_name, env[:lxc_template_src], env[:lxc_template_config], env[:lxc_template_opts] ) env[:machine].id = container_name @app.call env end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-lxc-0.7.0 | lib/vagrant-lxc/action/create.rb |