Make sure debian net post-up never returns an error code.

Inspired by e7dce43af3.

I'm using this configuration in my Vagrantfile:
config.vm.network :public_network, use_dhcp_assigned_default_route: true

Every once in a while the secondary network interface would not come
up properly and cause the init scripts to wait for ~ 3 minutes before
giving up and continue with booting.
This commit is contained in:
Philipp Schrader 2015-03-30 12:47:54 -07:00
parent f5ee8b8b7d
commit 29040b3920
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ iface eth<%= options[:interface] %> inet dhcp
post-up route del default dev $IFACE || true post-up route del default dev $IFACE || true
<% else %> <% else %>
# We need to disable eth0, see GH-2648 # We need to disable eth0, see GH-2648
post-up route del default dev eth0 post-up route del default dev eth0 || true
post-up dhclient $IFACE post-up dhclient $IFACE
pre-down route add default dev eth0 pre-down route add default dev eth0
<% end %> <% end %>