35c0c2c6db
Change-Id: I7bc144afa96f45122857ff634c8c19c1fd759450
23 lines
456 B
Bash
Executable File
23 lines
456 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
|
|
set -euo pipefail
|
|
|
|
case "$DISTRO_NAME" in
|
|
centos* | rhel* | rocky*)
|
|
dnf install -y elrepo-release.noarch
|
|
if [ ${DIB_ELREPO_KERNEL:-0} -eq 1 ]; then
|
|
rpm -q dnf-plugins-core || dnf install -y dnf-plugins-core
|
|
dnf config-manager --set-enabled "elrepo-kernel"
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Distro \"$DISTRO_NAME\" is not supported"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|