Merge pull request #8052 from tzvetkoff/fedora-fix-service-network-restart

Fix `service network restart` on RHEL-7 / Fedora
This commit is contained in:
Chris Roberts 2016-12-05 15:18:25 -08:00 committed by GitHub
commit 3e38dee3e3
2 changed files with 14 additions and 6 deletions

View File

@ -31,8 +31,12 @@ module VagrantPlugins
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
}
# Restart network
service network restart
# Restart network (through NetworkManager if running)
if service NetworkManager status 2>&1 | grep -q running; then
service NetworkManager restart
else
service network restart
fi
EOH
end
end

View File

@ -36,7 +36,7 @@ module VagrantPlugins
# Add the new interface and bring it back up
final_path = "#{network_scripts_dir}/ifcfg-#{network[:device]}"
commands << <<-EOH.gsub(/^ */, '')
commands << <<-EOH.gsub(/^ {14}/, '')
# Down the interface before munging the config file. This might
# fail if the interface is not actually set up yet so ignore
# errors.
@ -48,9 +48,13 @@ module VagrantPlugins
EOH
end
commands << <<-EOH.gsub(/^ */, '')
# Restart network
service network restart
commands << <<-EOH.gsub(/^ {12}/, '')
# Restart network (through NetworkManager if running)
if service NetworkManager status 2>&1 | grep -q running; then
service NetworkManager restart
else
service network restart
fi
EOH
comm.sudo(commands.join("\n"))