Really remove all interfaces in dhcp-all-ifaces

As the doc says, we want to remove all interfaces that come by default
in cloud images. Cloud images also come with an eth1 though, so lets
just remove all interfaces.

Change-Id: I49c74a3285e6a610ac723bdf976f3727d2736749
This commit is contained in:
Gregory Haynes 2016-03-23 05:57:56 +00:00
parent d5d2ad72b8
commit 4f4fab979e

View File

@ -10,13 +10,13 @@ set -o pipefail
# boot with DHCP.
# Fedora
rm -f /etc/sysconfig/network-scripts/ifcfg-eth0
rm -f /etc/sysconfig/network-scripts/ifcfg-eth*
# Ubuntu
rm -f /etc/network/interfaces.d/eth0.cfg
rm -f /etc/network/interfaces.d/eth*.cfg
# Debian
rm -f /etc/network/interfaces.d/eth0
rm -f /etc/network/interfaces.d/eth*
# /etc/network/interfaces distributions
if [ -f "/etc/network/interfaces" ]; then