95c3c54fed
Rocky Linux is very similar to CentOS 8. CentOS 8 required and forced NetworkManager with glean so we update dib to do the same for Rocky. Change-Id: I145e57d61059c2f34dc2d4810e83809b71c6aade
13 lines
522 B
Plaintext
13 lines
522 B
Plaintext
if [[ ${DISTRO_NAME} =~ (centos|fedora|rocky) ]]; then
|
|
export DIB_SIMPLE_INIT_NETWORKMANAGER=${DIB_SIMPLE_INIT_NETWORKMANAGER:-1}
|
|
else
|
|
export DIB_SIMPLE_INIT_NETWORKMANAGER=${DIB_SIMPLE_INIT_NETWORKMANAGER:-0}
|
|
fi
|
|
|
|
if [[ (${DISTRO_NAME} == "centos" || ${DISTRO_NAME} == "rocky") && $DIB_RELEASE > 7 ]] || [[ ${DISTRO_NAME} == "fedora" ]]; then
|
|
if [[ $DIB_SIMPLE_INIT_NETWORKMANAGER == 0 ]]; then
|
|
echo "simple-init only supports NetworkManager mode on Fedora and CentOS/Rocky 8"
|
|
exit 1
|
|
fi
|
|
fi
|