mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 11:34:44 +08:00
19 lines
303 B
Bash
Executable File
19 lines
303 B
Bash
Executable File
#!/bin/bash -e
|
|
#
|
|
# Install build dpenedencies.
|
|
|
|
source /etc/os-release
|
|
set -x
|
|
|
|
case $ID in
|
|
ubuntu*)
|
|
apt-get install -y gcc make cmake libssh-dev
|
|
;;
|
|
centos* | rhel* | rocky*)
|
|
yum install -y gcc make cmake libssh-devel rpm-build
|
|
;;
|
|
*)
|
|
echo "unsupported dependency install: $ID"
|
|
exit 1
|
|
esac
|