Forcing eth0 to come up

This commit is contained in:
Philipp Gysin 2013-08-05 18:02:12 +02:00
parent 1c057191cb
commit b6f2443bd5
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ module VagrantPlugins
comm.sudo("sed -i 's/.*$/#{name.split('.')[0]}/' /etc/hostname")
comm.sudo("hostname -F /etc/hostname")
comm.sudo("hostname --fqdn > /etc/mailname")
comm.sudo("ifdown -a; ifup -a; ifup -a --allow=hotplug")
comm.sudo("ifdown -a; ifup -a; ifup eth0")
end
end
end