diff --git a/plugins/guests/redhat/cap/change_host_name.rb b/plugins/guests/redhat/cap/change_host_name.rb index e950c987b..afe461d4f 100644 --- a/plugins/guests/redhat/cap/change_host_name.rb +++ b/plugins/guests/redhat/cap/change_host_name.rb @@ -31,12 +31,8 @@ module VagrantPlugins sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts } - # Restart network (through NetworkManager if running) - if service NetworkManager status 2>&1 | grep -q running; then - service NetworkManager restart - else - service network restart - fi + # Restart network + service network restart EOH end end diff --git a/plugins/guests/redhat/cap/configure_networks.rb b/plugins/guests/redhat/cap/configure_networks.rb index 396457968..6749f1bdc 100644 --- a/plugins/guests/redhat/cap/configure_networks.rb +++ b/plugins/guests/redhat/cap/configure_networks.rb @@ -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(/^ {14}/, '') + commands << <<-EOH.gsub(/^ */, '') # Down the interface before munging the config file. This might # fail if the interface is not actually set up yet so ignore # errors. @@ -48,13 +48,9 @@ module VagrantPlugins EOH end - 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 + commands << <<-EOH.gsub(/^ */, '') + # Restart network + service network restart EOH comm.sudo(commands.join("\n"))