Force use of NetworkManager with glean on Rocky Linux

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
This commit is contained in:
Clark Boylan 2022-02-23 12:43:06 -08:00
parent 4a2b63e7f9
commit 95c3c54fed

View File

@ -1,12 +1,12 @@
if [[ ${DISTRO_NAME} =~ (centos|fedora) ]]; then
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" && $DIB_RELEASE > 7 ]] || [[ ${DISTRO_NAME} == "fedora" ]]; then
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 8"
echo "simple-init only supports NetworkManager mode on Fedora and CentOS/Rocky 8"
exit 1
fi
fi