diff options
Diffstat (limited to 'scripts/print-install-deps.sh')
-rwxr-xr-x | scripts/print-install-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/print-install-deps.sh b/scripts/print-install-deps.sh index e0e2f09..6ec70fc 100755 --- a/scripts/print-install-deps.sh +++ b/scripts/print-install-deps.sh @@ -14,10 +14,10 @@ case $release in ubuntu-22.04*) echo "libc6 (>= 2.33), libgssapi-krb5-2 (>= 1.17), libssl3 (>= 3.0.0~~alpha1), zlib1g (>= 1:1.1.4)" ;; - centos* | rhel* | rocky*) + centos* | rhel* | rocky* | almalinux*) echo "glibc crypto-policies krb5-libs openssl-libs libcom_err" ;; *) - echo "unsupported install dependency: $release" + echo "$(basename $0): unsupported install dependency: $release" exit 1 esac |