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
|
2017-04-24 15:53:45 +00:00
|
|
|
extend Vagrant::Util::GuestInspection::Linux
|
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
|
|
|
|
2017-04-24 15:53:45 +00:00
|
|
|
# Check if NetworkManager is installed on the system
|
|
|
|
nmcli_installed = nmcli?(comm)
|
2016-06-05 23:09:12 +00:00
|
|
|
networks.each.with_index do |network, i|
|
|
|
|
network[:device] = interfaces[network[:interface]]
|
2017-04-24 15:53:45 +00:00
|
|
|
extra_opts = machine.config.vm.networks[i].last.dup
|
|
|
|
|
|
|
|
if nmcli_installed
|
|
|
|
# Now check if the device is actively being managed by NetworkManager
|
|
|
|
nm_controlled = nm_controlled?(comm, network[:device])
|
|
|
|
end
|
|
|
|
|
|
|
|
if !extra_opts.key?(:nm_controlled)
|
|
|
|
extra_opts[:nm_controlled] = !!nm_controlled
|
|
|
|
end
|
|
|
|
|
|
|
|
extra_opts[:nm_controlled] = case extra_opts[:nm_controlled]
|
|
|
|
when true
|
|
|
|
"yes"
|
|
|
|
when false, nil
|
|
|
|
"no"
|
|
|
|
else
|
|
|
|
extra_opts[:nm_controlled].to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
if extra_opts[:nm_controlled] == "yes" && !nmcli_installed
|
|
|
|
raise Vagrant::Errors::NetworkManagerNotInstalled, device: network[:device]
|
|
|
|
end
|
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]}",
|
2017-04-24 15:53:45 +00:00
|
|
|
options: network.merge(extra_opts),
|
2016-06-05 23:09:12 +00:00
|
|
|
)
|
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-08-23 20:02:11 +00:00
|
|
|
|
2017-04-24 15:53:45 +00:00
|
|
|
if nm_controlled
|
|
|
|
commands << "nmcli d disconnect '#{network[:device]}'"
|
|
|
|
else
|
|
|
|
commands << "/sbin/ifdown '#{network[:device]}'"
|
|
|
|
end
|
|
|
|
commands << "mv -f '#{remote_path}' '#{final_path}'"
|
|
|
|
if nmcli_installed
|
|
|
|
commands << "nmcli c reload"
|
|
|
|
end
|
|
|
|
if extra_opts[:nm_controlled] == "no"
|
|
|
|
commands << "/sbin/ifup '#{network[:device]}'"
|
|
|
|
else
|
|
|
|
commands << "nmcli c up ifname '#{network[:device]}'"
|
|
|
|
end
|
|
|
|
end
|
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
|