From 5c8638dc89c7c440646beb5581d296fe8f2bbc1b Mon Sep 17 00:00:00 2001 From: Mykola Babinskyi Date: Fri, 18 Apr 2025 19:39:59 +0200 Subject: [PATCH] feat: enable Fedora 41 and Fedora 42 support --- scripts/install-elastio.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-elastio.sh b/scripts/install-elastio.sh index 6779001..86dfe31 100755 --- a/scripts/install-elastio.sh +++ b/scripts/install-elastio.sh @@ -86,7 +86,7 @@ cent_fedora_install() done rpm --import https://$repo_host/GPG-KEY-elastio - yum localinstall -y $repo_package_url + yum install -y $repo_package_url which dnf >/dev/null 2>&1 && cent8_fedora_install $1 $2 $3 || cent7_amazon_install $1 $2 $3 @@ -331,7 +331,7 @@ case ${dist_name} in fedora | fc ) case ${dist_ver}-$(uname -m) in - 39-* | 40-* ) cent_fedora_install Fedora $(rpm -E %fedora) fc ;; + 40-* | 41-* | 42-* ) cent_fedora_install Fedora $(rpm -E %fedora) fc ;; * ) echo "Only Fedora versions 39 and 40 are supported. Current distro version $dist_ver isn't supported." exit 1