Avoid `unless`
This commit is contained in:
parent
73c8299ecd
commit
d3686465db
|
@ -2,7 +2,7 @@
|
||||||
# The contents below are automatically generated by Vagrant. Do not modify.
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
||||||
auto eth<%= options[:interface] %>
|
auto eth<%= options[:interface] %>
|
||||||
iface eth<%= options[:interface] %> inet dhcp
|
iface eth<%= options[:interface] %> inet dhcp
|
||||||
<% unless options[:use_dhcp_assigned_default_route] %>
|
<% if !options[:use_dhcp_assigned_default_route] %>
|
||||||
post-up route del default dev $IFACE
|
post-up route del default dev $IFACE
|
||||||
<% end %>
|
<% end %>
|
||||||
#VAGRANT-END
|
#VAGRANT-END
|
||||||
|
|
Loading…
Reference in New Issue