From b5c4e5f0cb1c66e9a3362bbf08851b63a96c6b41 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Tue, 23 Jan 2024 01:30:30 -0600 Subject: [PATCH] use quiet update --- quick_jibri_installer.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index af19f15..0b1b6c7 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -131,6 +131,7 @@ add_prosody_repo() { > /etc/apt/sources.list.d/prosody.list curl -s https://prosody.im/files/prosody-debian-packages.key \ > "$PROSODY_GPG_KEY" + apt-get update -q2 fi } dpkg-compare() { @@ -317,6 +318,7 @@ else > /etc/apt/sources.list.d/jitsi-stable.list curl -s https://download.jitsi.org/jitsi-key.gpg.key \ > "$JITSI_GPG_KEY" + apt-get update -q2 JITSI_REPO="stable" fi sleep .1 @@ -432,7 +434,6 @@ if [ "$LE_SSL" = "yes" ]; then fi echo "jitsi-meet-web-config jitsi-meet/jaas-choice boolean false" \ | debconf-set-selections -apt-get update -qy2 apt-get -y install \ jitsi-meet \ jibri \ @@ -453,7 +454,7 @@ else | gpg --dearmor -o "$NODEJS_GPG_KEY" echo "deb [signed-by=$NODEJS_GPG_KEY] https://deb.nodesource.com/node_$NODEJS_VER.x nodistro main" | \ tee /etc/apt/sources.list.d/nodesource.list - apt-get update -yq2 + apt-get update -q2 apt-get install -yq2 nodejs echo "Installing nodejs esprima package..."