mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 03:24:58 +08:00
24 lines
617 B
Bash
Executable File
24 lines
617 B
Bash
Executable File
#!/bin/bash -e
|
|
#
|
|
# Print install dpenedencies on Linux. CMake runs this script to obtain deps for CPACK.
|
|
# mscp dependes on packages on which libssh depends.
|
|
|
|
source /etc/os-release
|
|
|
|
release=$1
|
|
|
|
case $release in
|
|
ubuntu-20.04*)
|
|
echo "libc6 (>= 2.27), libgssapi-krb5-2 (>= 1.17), libssl1.1 (>= 1.1.1), zlib1g (>= 1:1.1.4)"
|
|
;;
|
|
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*)
|
|
echo "glibc crypto-policies krb5-libs openssl-libs libcom_err"
|
|
;;
|
|
*)
|
|
echo "unsupported install dependency: $release"
|
|
exit 1
|
|
esac
|