From 34e7af710c40e503bef3ad7919608b64d9db755c Mon Sep 17 00:00:00 2001 From: JieXu Date: Tue, 9 Sep 2025 10:42:40 +0800 Subject: [PATCH] Update package-rhel.sh --- package-rhel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-rhel.sh b/package-rhel.sh index 2cdf95c3..f9882732 100644 --- a/package-rhel.sh +++ b/package-rhel.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash set -euo pipefail -# ===== Require Red Hat Enterprise Linux/RockyLinux/AlmaLinux/CentOS OR Ubuntu/Debian ==== +# == Require Red Hat Enterprise Linux/Fedora Linux/RockyLinux/AlmaLinux/CentOS OR Ubuntu/Debian == if [[ -r /etc/os-release ]]; then . /etc/os-release case "$ID" in - rhel|rocky|almalinux|centos|ubuntu|debian) + rhel|rocky|almalinux|fedora|centos|ubuntu|debian) echo "[OK] Detected supported system: $NAME $VERSION_ID" ;; *)