quick_jibri_installer.sh: fix indention style #104
|
@ -41,6 +41,12 @@ PROSODY_REPO="$(apt-cache policy | awk '/prosody/{print$3}' | awk -F "/" 'NR==1{
|
||||||
PUBLIC_IP="$(dig -4 +short myip.opendns.com @resolver1.opendns.com)"
|
PUBLIC_IP="$(dig -4 +short myip.opendns.com @resolver1.opendns.com)"
|
||||||
NL="$(printf '\n ')"
|
NL="$(printf '\n ')"
|
||||||
NODEJS_VER="18"
|
NODEJS_VER="18"
|
||||||
|
JITSI_GPG_KEY="/etc/apt/trusted.gpg.d/jitsi-key.gpg.key"
|
||||||
|
PROSODY_GPG_KEY="/etc/apt/trusted.gpg.d/prosody-debian-packages.key"
|
||||||
|
NODEJS_GPG_KEY="/etc/apt/keyrings/nodesource.gpg"
|
||||||
|
TODAY=$(date +%s)
|
||||||
|
NEXT_LTS_DATE=$(date -d 2024-04-01 +%s)
|
||||||
|
CERT_CHOICE_DEBCONF="Generate a new self-signed certificate (You will later get a chance to obtain a Let's encrypt certificate)"
|
||||||
|
|
||||||
printwc() {
|
printwc() {
|
||||||
printf "%b$2%b" "$1" "${Color_Off}"
|
printf "%b$2%b" "$1" "${Color_Off}"
|
||||||
|
@ -121,8 +127,10 @@ add_prosody_repo() {
|
||||||
if [ "$PROSODY_REPO" = "main" ]; then
|
if [ "$PROSODY_REPO" = "main" ]; then
|
||||||
echo "Prosody repository already installed"
|
echo "Prosody repository already installed"
|
||||||
else
|
else
|
||||||
echo "deb [signed-by=/etc/apt/trusted.gpg.d/prosody-debian-packages.key] http://packages.prosody.im/debian $(lsb_release -sc) main" > /etc/apt/sources.list.d/prosody.list
|
echo "deb [signed-by=$PROSODY_GPG_KEY] http://packages.prosody.im/debian $DIST main" \
|
||||||
curl -s https://prosody.im/files/prosody-debian-packages.key > /etc/apt/trusted.gpg.d/prosody-debian-packages.key
|
> /etc/apt/sources.list.d/prosody.list
|
||||||
|
curl -s https://prosody.im/files/prosody-debian-packages.key \
|
||||||
|
> "$PROSODY_GPG_KEY"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
dpkg-compare() {
|
dpkg-compare() {
|
||||||
|
@ -187,13 +195,11 @@ else
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
#Suggest 22.04 LTS release over 20.04 in April 2024
|
#Suggest 22.04 LTS release over 20.04 in April 2024
|
||||||
TODAY=$(date +%s)
|
|
||||||
NEXT_LTS_DATE=$(date -d 2024-04-01 +%s)
|
|
||||||
|
|
||||||
if [ "$DIST" = "focal" ]; then
|
if [ "$DIST" = "focal" ]; then
|
||||||
if [ "$TODAY" -gt "$NEXT_LTS_DATE" ]; then
|
if [ "$TODAY" -gt "$NEXT_LTS_DATE" ]; then
|
||||||
echo " > $(lsb_release -sc), even when it's compatible and functional."
|
echo " > $(lsb_release -sc), even when it's compatible and functional."
|
||||||
echo " We suggest to use the next (LTS) release, for longer support and security reasons."
|
echo -n " We suggest to use the next (LTS) release, for longer"
|
||||||
|
echo " support and security reasons."
|
||||||
read -n 1 -s -r -p "Press any key to continue..."$'\n'
|
read -n 1 -s -r -p "Press any key to continue..."$'\n'
|
||||||
else
|
else
|
||||||
echo "Focal is supported."
|
echo "Focal is supported."
|
||||||
|
@ -203,7 +209,8 @@ fi
|
||||||
#Check system resources
|
#Check system resources
|
||||||
printf "\n\nVerifying System Resources:"
|
printf "\n\nVerifying System Resources:"
|
||||||
if [ "$(nproc --all)" -lt 4 ];then
|
if [ "$(nproc --all)" -lt 4 ];then
|
||||||
printf "\nWarning!: The system do not meet the minimum CPU requirements for Jibri to run."
|
printf "\nWarning!: The system do not meet the minimum CPU"
|
||||||
|
printf " requirements for Jibri to run."
|
||||||
printf "\n>> We recommend 4 cores/threads for Jibri!\n"
|
printf "\n>> We recommend 4 cores/threads for Jibri!\n"
|
||||||
CPU_MIN="N"
|
CPU_MIN="N"
|
||||||
else
|
else
|
||||||
|
@ -214,7 +221,8 @@ sleep .1
|
||||||
### Test RAM size (8GB min) ###
|
### Test RAM size (8GB min) ###
|
||||||
mem_available="$(grep MemTotal /proc/meminfo| grep -o '[0-9]\+')"
|
mem_available="$(grep MemTotal /proc/meminfo| grep -o '[0-9]\+')"
|
||||||
if [ "$mem_available" -lt 7700000 ]; then
|
if [ "$mem_available" -lt 7700000 ]; then
|
||||||
printf "\nWarning!: The system do not meet the minimum RAM requirements for Jibri to run."
|
printf "\nWarning!: The system do not meet the minimum RAM"
|
||||||
|
printf " requirements for Jibri to run."
|
||||||
printf "\n>> We recommend 8GB RAM for Jibri!\n\n"
|
printf "\n>> We recommend 8GB RAM for Jibri!\n\n"
|
||||||
MEM_MIN="N"
|
MEM_MIN="N"
|
||||||
else
|
else
|
||||||
|
@ -226,8 +234,10 @@ if [ "$CPU_MIN" = "Y" ] && [ "$MEM_MIN" = "Y" ];then
|
||||||
echo "All requirements seems meet!"
|
echo "All requirements seems meet!"
|
||||||
printf "\n - We hope you have a nice recording/streaming session\n"
|
printf "\n - We hope you have a nice recording/streaming session\n"
|
||||||
else
|
else
|
||||||
printf "CPU (%s)/RAM (%s MiB) does NOT meet minimum recommended requirements!" "$(nproc --all)" "$((mem_available/1024))"
|
printf "CPU (%s)/RAM (%s MiB)" "$(nproc --all)" "$((mem_available/1024))"
|
||||||
printf "\nEven when you can use the videoconferencing sessions, we advice to increase the resources in order to user Jibri.\n\n"
|
printf " does NOT meet minimum recommended requirements!"
|
||||||
|
printf "\nEven when you can use the videoconferencing sessions, we"
|
||||||
|
printf " advice to increase the resources in order to user Jibri.\n\n"
|
||||||
sleep .1
|
sleep .1
|
||||||
while [ "$CONTINUE_LOW_RES" != "yes" ] && [ "$CONTINUE_LOW_RES" != "no" ]
|
while [ "$CONTINUE_LOW_RES" != "yes" ] && [ "$CONTINUE_LOW_RES" != "no" ]
|
||||||
do
|
do
|
||||||
|
@ -237,7 +247,8 @@ sleep .1
|
||||||
exit
|
exit
|
||||||
elif [ "$CONTINUE_LOW_RES" = "yes" ]; then
|
elif [ "$CONTINUE_LOW_RES" = "yes" ]; then
|
||||||
printf "\n - We highly recommend to increase the server resources."
|
printf "\n - We highly recommend to increase the server resources."
|
||||||
printf "\n - Otherwise, please think about adding dedicated jibri nodes instead.\n\n"
|
printf "\n - Otherwise, please think about adding dedicated"
|
||||||
|
printf " jibri nodes instead.\n\n"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
@ -265,15 +276,17 @@ sleep .1
|
||||||
do
|
do
|
||||||
read -p "> Do you want to disable local jibri service?: (yes or no)$NL" -r DISABLE_LOCAL_JIBRI
|
read -p "> Do you want to disable local jibri service?: (yes or no)$NL" -r DISABLE_LOCAL_JIBRI
|
||||||
if [ "$DISABLE_LOCAL_JIBRI" = "no" ]; then
|
if [ "$DISABLE_LOCAL_JIBRI" = "no" ]; then
|
||||||
printf " - Please keep in mind that we might not support underpowered servers.\n"
|
printf " - Please keep in mind that we might not support"
|
||||||
|
printf " underpowered servers.\n"
|
||||||
elif [ "$DISABLE_LOCAL_JIBRI" = "yes" ]; then
|
elif [ "$DISABLE_LOCAL_JIBRI" = "yes" ]; then
|
||||||
printf " - You can add dedicated jibri nodes later, see more at the wiki.\n"
|
printf " - You can add dedicated jibri nodes later, see more"
|
||||||
|
printf " at the wiki.\n"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
sleep .1
|
sleep .1
|
||||||
#Check system oriented porpuse
|
#Check system oriented porpuse
|
||||||
apt-get -yq2 update
|
apt-get -q2 update
|
||||||
SYSTEM_DE="$(apt-cache search "ubuntu-(desktop|mate-desktop)"|awk '{print$1}'|xargs|sed 's|$| trisquel triskel trisquel-mini|')"
|
SYSTEM_DE="$(apt-cache search "ubuntu-(desktop|mate-desktop)"|awk '{print$1}'|xargs|sed 's|$| trisquel triskel trisquel-mini|')"
|
||||||
SYSTEM_DE_ARRAY=( "$SYSTEM_DE" )
|
SYSTEM_DE_ARRAY=( "$SYSTEM_DE" )
|
||||||
printf "\nChecking for common desktop system oriented purpose....\n"
|
printf "\nChecking for common desktop system oriented purpose....\n"
|
||||||
|
@ -281,11 +294,14 @@ for de in "${SYSTEM_DE_ARRAY[@]}"
|
||||||
do
|
do
|
||||||
if [ "$(dpkg-query -W -f='${Status}' "$de" 2>/dev/null | grep -c "ok installed")" == "1" ]; then
|
if [ "$(dpkg-query -W -f='${Status}' "$de" 2>/dev/null | grep -c "ok installed")" == "1" ]; then
|
||||||
printf "\n > This instance has %s installed, exiting...\n" "$de"
|
printf "\n > This instance has %s installed, exiting...\n" "$de"
|
||||||
printf "\nPlease avoid using this installer on a desktop-user oriented GNU/Linux system.\n"
|
printf "\nPlease avoid using this installer on a desktop-user"
|
||||||
printf "This is an unsupported use, as it will likely BREAK YOUR SYSTEM, so please don't.\n"
|
printf " oriented GNU/Linux system.\n"
|
||||||
|
printf "This is an unsupported use, as it will likely BREAK YOUR"
|
||||||
|
printf " SYSTEM, so please don't.\n"
|
||||||
exit
|
exit
|
||||||
else
|
else
|
||||||
printf " > No standard desktop environment for user oriented porpuse detected, good!, continuing...\n\n"
|
printf " > No standard desktop environment for user oriented"
|
||||||
|
printf " porpuse detected, good!, continuing...\n\n"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
sleep .1
|
sleep .1
|
||||||
|
@ -297,8 +313,10 @@ printf "\nAdd Jitsi repo\n"
|
||||||
if [ "$JITSI_REPO" = "stable" ]; then
|
if [ "$JITSI_REPO" = "stable" ]; then
|
||||||
printf " - Jitsi stable repository already installed\n\n"
|
printf " - Jitsi stable repository already installed\n\n"
|
||||||
else
|
else
|
||||||
echo 'deb [signed-by=/etc/apt/trusted.gpg.d/jitsi-key.gpg.key] http://download.jitsi.org stable/' > /etc/apt/sources.list.d/jitsi-stable.list
|
echo "deb [signed-by=$JITSI_GPG_KEY] http://download.jitsi.org stable/" \
|
||||||
curl -s https://download.jitsi.org/jitsi-key.gpg.key > /etc/apt/trusted.gpg.d/jitsi-key.gpg.key
|
> /etc/apt/sources.list.d/jitsi-stable.list
|
||||||
|
curl -s https://download.jitsi.org/jitsi-key.gpg.key \
|
||||||
|
> "$JITSI_GPG_KEY"
|
||||||
JITSI_REPO="stable"
|
JITSI_REPO="stable"
|
||||||
fi
|
fi
|
||||||
sleep .1
|
sleep .1
|
||||||
|
@ -310,7 +328,8 @@ if [ "$LE_SSL" = yes ]; then
|
||||||
printf " - We'll setup Let's Encrypt SSL certs.\n\n"
|
printf " - We'll setup Let's Encrypt SSL certs.\n\n"
|
||||||
else
|
else
|
||||||
printf " - We'll let you choose later on for it."
|
printf " - We'll let you choose later on for it."
|
||||||
printf " Please be aware that a valid SSL cert is required for some features to work properly.\n\n"
|
printf " Please be aware that a valid SSL cert is required for"
|
||||||
|
printf " some features to work properly.\n\n"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
sleep .1
|
sleep .1
|
||||||
|
@ -337,7 +356,8 @@ sleep .1
|
||||||
sleep .1
|
sleep .1
|
||||||
#Simple DNS test
|
#Simple DNS test
|
||||||
if [ "$PUBLIC_IP" = "$(dig -4 +short "$JITSI_DOMAIN"||awk -v RS='([0-9]+\\.){3}[0-9]+' 'RT{print RT}')" ]; then
|
if [ "$PUBLIC_IP" = "$(dig -4 +short "$JITSI_DOMAIN"||awk -v RS='([0-9]+\\.){3}[0-9]+' 'RT{print RT}')" ]; then
|
||||||
printf "\nServer public IP & DNS record for %s seems to match, continuing..." "$JITSI_DOMAIN"
|
printf "\nServer public IP & DNS record for"
|
||||||
|
printf " %s seems to match, continuing..." "$JITSI_DOMAIN"
|
||||||
else
|
else
|
||||||
echo -n "Server public IP ($PUBLIC_IP) & DNS record for $JITSI_DOMAIN"
|
echo -n "Server public IP ($PUBLIC_IP) & DNS record for $JITSI_DOMAIN"
|
||||||
echo " don't seem to match."
|
echo " don't seem to match."
|
||||||
|
@ -354,8 +374,8 @@ sleep .1
|
||||||
fi
|
fi
|
||||||
sleep .1
|
sleep .1
|
||||||
# Requirements
|
# Requirements
|
||||||
printf "\nWe'll start by installing system requirements this may take a while please be patient...\n"
|
printf "\nWe'll start by installing system requirements this may take"
|
||||||
apt-get update -q2
|
printf " a while please be patient...\n"
|
||||||
apt-get dist-upgrade -yq2
|
apt-get dist-upgrade -yq2
|
||||||
|
|
||||||
apt-get -y install \
|
apt-get -y install \
|
||||||
|
@ -383,7 +403,8 @@ apt-get -y install \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "# Check and Install HWE kernel if possible..."
|
echo "# Check and Install HWE kernel if possible..."
|
||||||
HWE_VIR_MOD="$(apt-cache madison linux-image-generic-hwe-"$(lsb_release -sr)" 2>/dev/null|head -n1|grep -c "hwe-$(lsb_release -sr)")"
|
HWE_VIR_MOD="$(apt-cache madison linux-image-generic-hwe-"$(lsb_release -sr)" \
|
||||||
|
2>/dev/null|head -n1|grep -c "hwe-$(lsb_release -sr)")"
|
||||||
if [ "$HWE_VIR_MOD" = "1" ]; then
|
if [ "$HWE_VIR_MOD" = "1" ]; then
|
||||||
apt-get -y install \
|
apt-get -y install \
|
||||||
linux-image-generic-hwe-"$(lsb_release -sr)" \
|
linux-image-generic-hwe-"$(lsb_release -sr)" \
|
||||||
|
@ -402,11 +423,15 @@ echo "
|
||||||
#--------------------------------------------------
|
#--------------------------------------------------
|
||||||
"
|
"
|
||||||
if [ "$LE_SSL" = "yes" ]; then
|
if [ "$LE_SSL" = "yes" ]; then
|
||||||
echo "set jitsi-meet/cert-choice select Generate a new self-signed certificate (You will later get a chance to obtain a Let's encrypt certificate)" | debconf-set-selections
|
echo "set jitsi-meet/cert-choice select $CERT_CHOICE_DEBCONF" \
|
||||||
echo "jitsi-videobridge2 jitsi-videobridge/jvb-hostname string $JITSI_DOMAIN" | debconf-set-selections
|
| debconf-set-selections
|
||||||
echo "jitsi-meet-web-config jitsi-meet/email string $SYSADMIN_EMAIL" | debconf-set-selections
|
echo "jitsi-videobridge2 jitsi-videobridge/jvb-hostname string $JITSI_DOMAIN" \
|
||||||
|
| debconf-set-selections
|
||||||
|
echo "jitsi-meet-web-config jitsi-meet/email string $SYSADMIN_EMAIL" \
|
||||||
|
| debconf-set-selections
|
||||||
fi
|
fi
|
||||||
echo "jitsi-meet-web-config jitsi-meet/jaas-choice boolean false" | debconf-set-selections
|
echo "jitsi-meet-web-config jitsi-meet/jaas-choice boolean false" \
|
||||||
|
| debconf-set-selections
|
||||||
apt-get -y install \
|
apt-get -y install \
|
||||||
jitsi-meet \
|
jitsi-meet \
|
||||||
jibri \
|
jibri \
|
||||||
|
@ -423,9 +448,10 @@ if [ "$(dpkg-query -W -f='${Status}' nodejs 2>/dev/null | grep -c "ok")" == "1"
|
||||||
echo "Nodejs is installed, skipping..."
|
echo "Nodejs is installed, skipping..."
|
||||||
else
|
else
|
||||||
mkdir -p /etc/apt/keyrings
|
mkdir -p /etc/apt/keyrings
|
||||||
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
|
||||||
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODEJS_VER.x nodistro main" | \
|
| gpg --dearmor -o "$NODEJS_GPG_KEY"
|
||||||
tee /etc/apt/sources.list.d/nodesource.list
|
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 -yq2
|
||||||
apt-get install -yq2 nodejs
|
apt-get install -yq2 nodejs
|
||||||
|
|
||||||
|
@ -451,7 +477,7 @@ else
|
||||||
fi
|
fi
|
||||||
apt-get -q2 update
|
apt-get -q2 update
|
||||||
apt-get install -yq2 google-chrome-stable
|
apt-get install -yq2 google-chrome-stable
|
||||||
rm -rf /etc/apt/sources.list.d/dl_google_com_linux_chrome_deb.list
|
rm -rf "$GOOGL_REPO"
|
||||||
|
|
||||||
G_CHROME=$(apt-cache madison google-chrome-stable|awk '{print$3}'|cut -d. -f1-3)
|
G_CHROME=$(apt-cache madison google-chrome-stable|awk '{print$3}'|cut -d. -f1-3)
|
||||||
CHROMELAB_URL="https://googlechromelabs.github.io/chrome-for-testing"
|
CHROMELAB_URL="https://googlechromelabs.github.io/chrome-for-testing"
|
||||||
|
@ -615,17 +641,20 @@ select opt in "${options[@]}"
|
||||||
do
|
do
|
||||||
case $opt in
|
case $opt in
|
||||||
"Local")
|
"Local")
|
||||||
printf "\n > Users are created manually using prosodyctl, only moderators can open a room or launch recording.\n"
|
printf "\n > Users are created manually using prosodyctl,"
|
||||||
|
printf " only moderators can open a room or launch recording.\n"
|
||||||
ENABLE_SC="yes"
|
ENABLE_SC="yes"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"JWT")
|
"JWT")
|
||||||
printf "\n > A external app manage the token usage/creation, like RocketChat does.\n"
|
printf "\n > A external app manage the token usage/creation,"
|
||||||
|
printf " like RocketChat does.\n"
|
||||||
ENABLE_JWT="yes"
|
ENABLE_JWT="yes"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"None")
|
"None")
|
||||||
printf "\n > Everyone can access the room as moderators as there is no auth mechanism.\n"
|
printf "\n > Everyone can access the room as moderators as"
|
||||||
|
printf " there is no auth mechanism.\n"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
*) echo "Invalid option $REPLY, choose 1, 2 or 3";;
|
*) echo "Invalid option $REPLY, choose 1, 2 or 3";;
|
||||||
|
@ -633,19 +662,22 @@ do
|
||||||
done
|
done
|
||||||
sleep .1
|
sleep .1
|
||||||
# Set jibris default resolution
|
# Set jibris default resolution
|
||||||
printf "\n> What jibri resolution should be the default for this and all the following jibri nodes?\n"
|
printf "\n> What jibri resolution should be the default for this and all"
|
||||||
|
printf " the following jibri nodes?\n"
|
||||||
PS3='The more resolution the more resources jibri will require to record properly: '
|
PS3='The more resolution the more resources jibri will require to record properly: '
|
||||||
jib_res=("HD 720" "FHD 1080")
|
jib_res=("HD 720" "FHD 1080")
|
||||||
select res in "${jib_res[@]}"
|
select res in "${jib_res[@]}"
|
||||||
do
|
do
|
||||||
case $res in
|
case $res in
|
||||||
"HD 720")
|
"HD 720")
|
||||||
printf "\n > HD (1280x720) is good enough for most cases, and requires a moderate high hw requirements.\n\n"
|
printf "\n > HD (1280x720) is good enough for most cases,"
|
||||||
|
printf " and requires a moderate high hw requirements.\n\n"
|
||||||
JIBRI_RES="720"
|
JIBRI_RES="720"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"FHD 1080")
|
"FHD 1080")
|
||||||
printf "\n > Full HD (1920x1080) is the best resolution available, it also requires high hw requirements.\n\n"
|
printf "\n > Full HD (1920x1080) is the best resolution"
|
||||||
|
printf " available, it also requires high hw requirements.\n\n"
|
||||||
JIBRI_RES="1080"
|
JIBRI_RES="1080"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
@ -1260,8 +1292,9 @@ if [ -f "$WS_CONF" ]; then
|
||||||
sed -i "/external_api.js/i \\\n" "$WS_CONF"
|
sed -i "/external_api.js/i \\\n" "$WS_CONF"
|
||||||
systemctl reload nginx
|
systemctl reload nginx
|
||||||
else
|
else
|
||||||
echo "No interface_config.js configuration done to server file, please report to:
|
printf "No interface_config.js configuration done to server file,"
|
||||||
-> https://forge.switnet.net/switnet/quick-jibri-installer/issues"
|
printf " please report to:"
|
||||||
|
printf " -> https://forge.switnet.net/switnet/quick-jibri-installer/issues"
|
||||||
fi
|
fi
|
||||||
#JRA via Nextcloud
|
#JRA via Nextcloud
|
||||||
if [ "$ENABLE_NC_ACCESS" = "yes" ]; then
|
if [ "$ENABLE_NC_ACCESS" = "yes" ]; then
|
||||||
|
|
Loading…
Reference in New Issue