diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-07-20 21:54:43 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-07-20 21:54:43 +0900 |
commit | a847ef1ea8062c09b42b1ea1b048a388c9e593fc (patch) | |
tree | c53ae68be8be157be0f0f17957d53dd8617a7177 /scripts | |
parent | 24e86f58d87d48864e6ae33f1953124e467753ea (diff) |
drop centos8, add almalinux 8.8, update rocky to 8.8
And cleanup Docker files
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-build-deps.sh | 2 | ||||
-rwxr-xr-x | scripts/print-install-deps.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/install-build-deps.sh b/scripts/install-build-deps.sh index 172d4e9..ac9e4f1 100755 --- a/scripts/install-build-deps.sh +++ b/scripts/install-build-deps.sh @@ -19,7 +19,7 @@ case $platform in apt-get install -y \ gcc make cmake zlib1g-dev libssl-dev libkrb5-dev ;; - Linux-centos* | Linux-rhel* | Linux-rocky*) + Linux-centos* | Linux-rhel* | Linux-rocky* | Linux-almalinux) yum install -y \ gcc make cmake zlib-devel openssl-devel rpm-build ;; 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 |