Used sequpgrade.sh to upgrade existing seqs
This commit is contained in:
@@ -21,7 +21,7 @@ WDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >>/dev/null 2>&1 && pwd )"
|
||||
#}
|
||||
|
||||
step_1_info() { echo "Installation of prerequisits"; }
|
||||
step_1_alias() { ALIAS="prepare"; }
|
||||
step_1_alias() { echo "prepare"; }
|
||||
step_1() {
|
||||
exe apt install gnupg2 git lsb-release ssl-cert ca-certificates apt-transport-https \
|
||||
tree locate software-properties-common dirmngr screen htop nano net-tools zip unzip \
|
||||
@@ -47,7 +47,7 @@ step_4() {
|
||||
}
|
||||
|
||||
step_5_info() { echo "Install nginx webserver"; }
|
||||
step_5_alias() { ALIAS="webserver"; }
|
||||
step_5_alias() { echo "webserver"; }
|
||||
step_5() {
|
||||
exe apt install nginx
|
||||
endReturn -o $? "Installation of webserver nginx failed"
|
||||
@@ -58,7 +58,7 @@ step_5() {
|
||||
}
|
||||
|
||||
step_6_info() { echo "Install ufw firewall"; }
|
||||
step_6_alias() { ALIAS="firewall"; }
|
||||
step_6_alias() { echo "firewall"; }
|
||||
step_6() {
|
||||
exe apt install ufw
|
||||
endReturn -o $? "Installation of firewall ufw failed"
|
||||
@@ -76,7 +76,7 @@ step_7() {
|
||||
}
|
||||
|
||||
step_8_info() { echo "Install $toolName"; }
|
||||
step_8_alias() { ALIAS="install"; }
|
||||
step_8_alias() { echo "install"; }
|
||||
step_8() {
|
||||
exe read -p "Make sure SSL certificates are available. Enter to continue"
|
||||
exe apt install jitsi-meet -y
|
||||
@@ -135,11 +135,11 @@ step_10() {
|
||||
}
|
||||
|
||||
step_20_info() { echo "Restart all $toolName components"; }
|
||||
step_20_alias() { ALIAS="restart"; }
|
||||
step_20_alias() { echo "restart"; }
|
||||
step_20() {
|
||||
echo " [I] Restart jitsi-meet components"
|
||||
exep "service prosody restart&& service jicofo restart && service jitsi-videobridge2 restart"
|
||||
}
|
||||
|
||||
VERSION_SEQREV=10
|
||||
readonly sqr_minVersion=16
|
||||
. /usr/local/bin/sequencer.sh
|
||||
|
Reference in New Issue
Block a user