From a40d5f5aa8fe27aaa908970eae2546dd746e2ce6 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Mon, 13 Nov 2023 22:42:27 -0600 Subject: [PATCH] quick_jibri_installer.sh: force IPv4 public ip retrieval. --- quick_jibri_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index d4e316e..9e6be84 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -38,7 +38,7 @@ DIST=$(lsb_release -sc) GOOGL_REPO="/etc/apt/sources.list.d/dl_google_com_linux_chrome_deb.list" GOOGLE_ACTIVE_REPO=$(apt-cache policy | awk '/chrome/{print$3}' | awk -F "/" 'NR==1{print$2}') PROSODY_REPO="$(apt-cache policy | awk '/prosody/{print$3}' | awk -F "/" 'NR==1{print$2}')" -PUBLIC_IP="$(dig +short myip.opendns.com @resolver1.opendns.com)" +PUBLIC_IP="$(dig -4 +short myip.opendns.com @resolver1.opendns.com)" NL="$(printf '\n ')" NODEJS_VER="18"