4.0 release merge #16
|
@ -940,24 +940,41 @@ fi
|
||||||
#JRA via Nextcloud
|
#JRA via Nextcloud
|
||||||
if [ "$ENABLE_NC_ACCESS" = "yes" ]; then
|
if [ "$ENABLE_NC_ACCESS" = "yes" ]; then
|
||||||
echo "JRA via Nextcloud will be enabled."
|
echo "JRA via Nextcloud will be enabled."
|
||||||
bash $PWD/jra_nextcloud.sh
|
if [ "$MODE" = "debug" ]; then
|
||||||
|
bash $PWD/jra_nextcloud.sh -m debug
|
||||||
|
else
|
||||||
|
bash $PWD/jra_nextcloud.sh
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
} > >(tee -a qj-installer.log) 2> >(tee -a qj-installer.log >&2)
|
} > >(tee -a qj-installer.log) 2> >(tee -a qj-installer.log >&2)
|
||||||
#Jigasi Transcript
|
#Jigasi Transcript
|
||||||
if [ "$ENABLE_TRANSCRIPT" = "yes" ]; then
|
if [ "$ENABLE_TRANSCRIPT" = "yes" ]; then
|
||||||
echo "Jigasi Transcription will be enabled."
|
echo "Jigasi Transcription will be enabled."
|
||||||
bash $PWD/jigasi.sh
|
# ToDo: Analyze behavior on debug
|
||||||
|
#if [ "$MODE" = "debug" ]; then
|
||||||
|
# bash $PWD/jigasi.sh -m debug
|
||||||
|
#else
|
||||||
|
bash $PWD/jigasi.sh
|
||||||
|
#fi
|
||||||
fi
|
fi
|
||||||
{
|
{
|
||||||
#Grafana Dashboard
|
#Grafana Dashboard
|
||||||
if [ "$ENABLE_GRAFANA_DSH" = "yes" ]; then
|
if [ "$ENABLE_GRAFANA_DSH" = "yes" ]; then
|
||||||
echo "Grafana Dashboard will be enabled."
|
echo "Grafana Dashboard will be enabled."
|
||||||
bash $PWD/grafana.sh
|
if [ "$MODE" = "debug" ]; then
|
||||||
|
bash $PWD/grafana.sh -m debug
|
||||||
|
else
|
||||||
|
bash $PWD/grafana.sh
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
#Docker Etherpad
|
#Docker Etherpad
|
||||||
if [ "$ENABLE_DOCKERPAD" = "yes" ]; then
|
if [ "$ENABLE_DOCKERPAD" = "yes" ]; then
|
||||||
echo "Docker Etherpad will be enabled."
|
echo "Docker Etherpad will be enabled."
|
||||||
bash $PWD/etherpad.sh
|
if [ "$MODE" = "debug" ]; then
|
||||||
|
bash $PWD/etherpad.sh -m debug
|
||||||
|
else
|
||||||
|
bash $PWD/etherpad.sh
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
#Prevent Jibri conecction issue
|
#Prevent Jibri conecction issue
|
||||||
if [ -z "$(grep -n $DOMAIN /etc/hosts)" ];then
|
if [ -z "$(grep -n $DOMAIN /etc/hosts)" ];then
|
||||||
|
|
Loading…
Reference in New Issue