
... because CentOS 8 and RHEL 8 is no longer supported. Change-Id: I90e5b85827a324c0a258fd30cf94b3e8ac8c841f
13 lines
210 B
Bash
Executable File
13 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [[ "$DISTRO_NAME" =~ (ubuntu) ]] && [ "$DIB_RELEASE" == "focal" ]; then
|
|
systemctl enable systemd-networkd
|
|
fi
|