7ad61bb451
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
9 lines
124 B
Bash
Executable File
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
|