vagrant-lxc-ng/lib/vagrant-lxc/action/network.rb
Fabio Rehm 164e57695e 💣 BaseAction
2013-04-05 22:10:48 -03:00

25 lines
552 B
Ruby

module Vagrant
module LXC
module Action
class Network
def initialize(app, env)
@app = app
end
def call(env)
@env = env
env[:machine].config.vm.networks.each do |type, options|
# We only handle private networks
next if type != :private_network
env[:machine].provider_config.start_opts << "lxc.network.ipv4=#{options[:ip]}/24"
end
# Continue the middleware chain.
@app.call(env)
end
end
end
end
end