From b240af434d4aba0fcca80fe0827f8ce5073eb0f4 Mon Sep 17 00:00:00 2001 From: murat Date: Wed, 25 Oct 2023 14:10:51 +0300 Subject: [PATCH] Add curl package for the minimal OS installations --- install_ant-media-server.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install_ant-media-server.sh b/install_ant-media-server.sh index fd668965..9c42fe1a 100755 --- a/install_ant-media-server.sh +++ b/install_ant-media-server.sh @@ -238,11 +238,12 @@ fi if [ -z "$ANT_MEDIA_SERVER_ZIP_FILE" ]; then if [ "$ID" == "ubuntu" ]; then + #Added curl package for the minimal OS installations. $SUDO apt-get update - $SUDO apt-get install jq -y + $SUDO apt-get install jq curl -y check elif [ "$ID" == "centos" ] || [ "$ID" == "almalinux" ] || [ "$ID" == "rocky" ] || [ "$ID" == "rhel" ]; then - $SUDO yum -y install jq + $SUDO yum -y install jq curl fi if [ -z "${LICENSE_KEY}" ]; then echo "Downloading the latest version of Ant Media Server Community Edition."