Merge pull request #2026 from ppp0/patch-set-hostname-debian

plugins/guests/debian: Forcing eth0 to come up
This commit is contained in:
Mitchell Hashimoto 2013-08-09 11:11:57 -07:00
commit 8e065abf3c
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