2016-05-31 03:17:02 +00:00
|
|
|
require "tempfile"
|
2013-04-04 19:09:40 +00:00
|
|
|
|
2016-05-29 03:17:40 +00:00
|
|
|
require_relative "../../../../lib/vagrant/util/template_renderer"
|
2013-04-04 19:09:40 +00:00
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestRedHat
|
|
|
|
module Cap
|
|
|
|
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)
|
2016-06-05 23:09:12 +00:00
|
|
|
comm = machine.communicate
|
2014-05-06 20:26:44 +00:00
|
|
|
|
2016-06-05 23:09:12 +00:00
|
|
|
network_scripts_dir = machine.guest.capability(:network_scripts_dir)
|
2014-05-06 20:26:44 +00:00
|
|
|
|
2016-06-05 23:09:12 +00:00
|
|
|
commands = []
|
2016-06-23 02:08:02 +00:00
|
|
|
interfaces = machine.guest.capability(:network_interfaces)
|
2016-06-05 23:09:12 +00:00
|
|
|
|
|
|
|
networks.each.with_index do |network, i|
|
|
|
|
network[:device] = interfaces[network[:interface]]
|
2014-05-06 20:26:44 +00:00
|
|
|
|
2016-06-05 23:09:12 +00:00
|
|
|
# Render a new configuration
|
2014-05-06 12:48:01 +00:00
|
|
|
entry = TemplateRenderer.render("guests/redhat/network_#{network[:type]}",
|
2016-06-05 23:09:12 +00:00
|
|
|
options: network,
|
|
|
|
)
|
2013-04-04 19:09:40 +00:00
|
|
|
|
2016-06-05 23:09:12 +00:00
|
|
|
# Upload the new configuration
|
|
|
|
remote_path = "/tmp/vagrant-network-entry-#{network[:device]}-#{Time.now.to_i}-#{i}"
|
|
|
|
Tempfile.open("vagrant-redhat-configure-networks") do |f|
|
2016-05-31 03:17:02 +00:00
|
|
|
f.binmode
|
2016-05-29 03:17:40 +00:00
|
|
|
f.write(entry)
|
|
|
|
f.fsync
|
|
|
|
f.close
|
2016-06-05 23:09:12 +00:00
|
|
|
machine.communicate.upload(f.path, remote_path)
|
2016-05-29 03:17:40 +00:00
|
|
|
end
|
2013-04-04 19:09:40 +00:00
|
|
|
|
2016-06-05 23:09:12 +00:00
|
|
|
# Add the new interface and bring it back up
|
|
|
|
final_path = "#{network_scripts_dir}/ifcfg-#{network[:device]}"
|
2016-12-22 01:31:53 +00:00
|
|
|
commands << <<-EOH.gsub(/^ */, '')
|
2016-06-05 23:09:12 +00:00
|
|
|
# Down the interface before munging the config file. This might
|
|
|
|
# fail if the interface is not actually set up yet so ignore
|
|
|
|
# errors.
|
2016-10-25 14:45:38 +00:00
|
|
|
/sbin/ifdown '#{network[:device]}'
|
2016-06-05 23:09:12 +00:00
|
|
|
# Move new config into place
|
2016-08-23 19:58:15 +00:00
|
|
|
mv -f '#{remote_path}' '#{final_path}'
|
2016-10-25 14:45:38 +00:00
|
|
|
# attempt to force network manager to reload configurations
|
|
|
|
nmcli c reload || true
|
2016-06-05 23:09:12 +00:00
|
|
|
EOH
|
2013-04-04 19:09:40 +00:00
|
|
|
end
|
2016-06-05 23:09:12 +00:00
|
|
|
|
2016-12-22 01:31:53 +00:00
|
|
|
commands << <<-EOH.gsub(/^ */, '')
|
|
|
|
# Restart network
|
|
|
|
service network restart
|
2016-08-23 20:02:11 +00:00
|
|
|
EOH
|
|
|
|
|
2016-06-05 23:09:12 +00:00
|
|
|
comm.sudo(commands.join("\n"))
|
2013-04-04 19:09:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|