55 lines
2.3 KiB
Ruby
55 lines
2.3 KiB
Ruby
|
require "set"
|
||
|
require "tempfile"
|
||
|
|
||
|
require "vagrant/util/template_renderer"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module GuestFedora
|
||
|
module Cap
|
||
|
class ConfigureNetworks
|
||
|
include Vagrant::Util
|
||
|
|
||
|
def self.configure_networks(machine, networks)
|
||
|
network_scripts_dir = machine.guest.capability("network_scripts_dir")
|
||
|
|
||
|
# Accumulate the configurations to add to the interfaces file as well
|
||
|
# as what interfaces we're actually configuring since we use that later.
|
||
|
interfaces = Set.new
|
||
|
networks.each do |network|
|
||
|
interfaces.add(network[:interface])
|
||
|
|
||
|
# Remove any previous vagrant configuration in this network
|
||
|
# interface's configuration files.
|
||
|
vm.communicate.sudo("touch #{network_scripts_dir}/ifcfg-p7p#{network[:interface]}")
|
||
|
vm.communicate.sudo("sed -e '/^#VAGRANT-BEGIN/,/^#VAGRANT-END/ d' #{network_scripts_dir}/ifcfg-p7p#{network[:interface]} > /tmp/vagrant-ifcfg-p7p#{network[:interface]}")
|
||
|
vm.communicate.sudo("cat /tmp/vagrant-ifcfg-p7p#{network[:interface]} > #{network_scripts_dir}/ifcfg-p7p#{network[:interface]}")
|
||
|
vm.communicate.sudo("rm /tmp/vagrant-ifcfg-p7p#{network[:interface]}")
|
||
|
|
||
|
# Render and upload the network entry file to a deterministic
|
||
|
# temporary location.
|
||
|
entry = TemplateRenderer.render("guests/fedora/network_#{network[:type]}",
|
||
|
:options => network)
|
||
|
|
||
|
temp = Tempfile.new("vagrant")
|
||
|
temp.binmode
|
||
|
temp.write(entry)
|
||
|
temp.close
|
||
|
|
||
|
vm.communicate.upload(temp.path, "/tmp/vagrant-network-entry_#{network[:interface]}")
|
||
|
end
|
||
|
|
||
|
# Bring down all the interfaces we're reconfiguring. By bringing down
|
||
|
# each specifically, we avoid reconfiguring p7p (the NAT interface) so
|
||
|
# SSH never dies.
|
||
|
interfaces.each do |interface|
|
||
|
vm.communicate.sudo("/sbin/ifdown p7p#{interface} 2> /dev/null", :error_check => false)
|
||
|
vm.communicate.sudo("cat /tmp/vagrant-network-entry_#{interface} >> #{network_scripts_dir}/ifcfg-p7p#{interface}")
|
||
|
vm.communicate.sudo("rm /tmp/vagrant-network-entry_#{interface}")
|
||
|
vm.communicate.sudo("/sbin/ifup p7p#{interface} 2> /dev/null")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|