From 58f4e77ea153c1707be6398e4d66a05ba76f2048 Mon Sep 17 00:00:00 2001 From: Ankita Victor Date: Thu, 25 Apr 2024 23:36:55 +0530 Subject: [PATCH] Add OS type Debian in setup-adapters.sh --- scripts/setup-adapters.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup-adapters.sh b/scripts/setup-adapters.sh index 3e3ca3afc762..45ce09f9977f 100755 --- a/scripts/setup-adapters.sh +++ b/scripts/setup-adapters.sh @@ -144,7 +144,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then # /etc/os-release is a standard way to query various distribution # information and is available everywhere LINUX_DISTRIBUTION=$(. /etc/os-release && echo ${ID}) - if [[ "$LINUX_DISTRIBUTION" == "ubuntu" ]]; then + if [[ "$LINUX_DISTRIBUTION" == "ubuntu" || "$LINUX_DISTRIBUTION" == "debian" ]]; then apt install -y --no-install-recommends libxml2-dev libgsasl7-dev uuid-dev # Dependencies of GCS, probably a workaround until the docker image is rebuilt apt install -y --no-install-recommends libc-ares-dev libcurl4-openssl-dev