2013-04-04 19:09:40 +00:00
|
|
|
require "tempfile"
|
|
|
|
|
|
|
|
require "vagrant/util/template_renderer"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
2013-05-07 09:38:46 +00:00
|
|
|
module GuestGentoo
|
2013-04-04 19:09:40 +00:00
|
|
|
module Cap
|
2013-05-07 09:38:46 +00:00
|
|
|
class ConfigureNetworks
|
2013-04-08 17:47:19 +00:00
|
|
|
include Vagrant::Util
|
2013-04-04 19:09:40 +00:00
|
|
|
|
|
|
|
def self.configure_networks(machine, networks)
|
|
|
|
machine.communicate.tap do |comm|
|
|
|
|
# Remove any previous host only network additions to the interface file
|
|
|
|
comm.sudo("sed -e '/^#VAGRANT-BEGIN/,/^#VAGRANT-END/ d' /etc/conf.d/net > /tmp/vagrant-network-interfaces")
|
|
|
|
comm.sudo("cat /tmp/vagrant-network-interfaces > /etc/conf.d/net")
|
|
|
|
comm.sudo("rm /tmp/vagrant-network-interfaces")
|
|
|
|
|
|
|
|
# Configure each network interface
|
|
|
|
networks.each do |network|
|
|
|
|
entry = TemplateRenderer.render("guests/gentoo/network_#{network[:type]}",
|
2014-05-22 16:35:12 +00:00
|
|
|
options: network)
|
2013-04-04 19:09:40 +00:00
|
|
|
|
|
|
|
# Upload the entry to a temporary location
|
|
|
|
temp = Tempfile.new("vagrant")
|
|
|
|
temp.binmode
|
|
|
|
temp.write(entry)
|
|
|
|
temp.close
|
|
|
|
|
|
|
|
comm.upload(temp.path, "/tmp/vagrant-network-entry")
|
|
|
|
|
|
|
|
# Configure the interface
|
|
|
|
comm.sudo("ln -fs /etc/init.d/net.lo /etc/init.d/net.eth#{network[:interface]}")
|
|
|
|
comm.sudo("/etc/init.d/net.eth#{network[:interface]} stop 2> /dev/null")
|
|
|
|
comm.sudo("cat /tmp/vagrant-network-entry >> /etc/conf.d/net")
|
|
|
|
comm.sudo("rm /tmp/vagrant-network-entry")
|
|
|
|
comm.sudo("/etc/init.d/net.eth#{network[:interface]} start")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|