Skip to content

Commit

Permalink
Merge pull request #266 from ant-media/add_curl_for_minimal_os
Browse files Browse the repository at this point in the history
Add curl package for the minimal OS installations
  • Loading branch information
mekya authored Oct 30, 2023
2 parents eb43362 + b240af4 commit 2af727f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions install_ant-media-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 2af727f

Please sign in to comment.