octavia/elements/remove-default-ints/post-install.d/91-remove-default-ints
Michael Johnson 7ad61bb451 Remove unnecessary interface configurations
The image building process adds some unnecessary network interface
configuration files to /etc/network/interfaces.d. This element cleans those
out as they are not needed because cloud-init will create the required
configuration file.

Change-Id: If5fbfc34ff0e91608f402811aa2b78c9cbcb00ec
2019-11-20 16:02:42 -08:00

9 lines
124 B
Bash
Executable File

#!/bin/bash
set -eu
set -o xtrace
if [[ "$DISTRO_NAME" == "ubuntu" ]]; then
sudo rm -f /etc/network/interfaces.d/*
fi