Merge pull request #7120 from larsch/restart-network-arch

Restart network after reconfiguration
This commit is contained in:
Seth Vargo 2016-03-08 13:55:50 -05:00
commit 991fec65f6
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ module VagrantPlugins
machine.communicate.upload(temp.path, "/tmp/vagrant_network")
machine.communicate.sudo("mv /tmp/vagrant_network /etc/netctl/#{network[:device]}")
machine.communicate.sudo("ip link set #{network[:device]} down && netctl start #{network[:device]} && netctl enable #{network[:device]}")
machine.communicate.sudo("ip link set #{network[:device]} down && netctl restart #{network[:device]} && netctl enable #{network[:device]}")
end
end
end