|
@@ -167,7 +167,7 @@ case "$1" in
|
167
|
167
|
|
168
|
168
|
db_set jitsi-meet/jvb-serve "true"
|
169
|
169
|
|
170
|
|
- invoke-rc.d jitsi-videobridge restart
|
|
170
|
+ invoke-rc.d jitsi-videobridge restart || true
|
171
|
171
|
elif [[ "$FORCE_NGINX" = "true" && ( -z "$JVB_HOSTNAME_OLD" || "$RECONFIGURING" = "true" ) ]] ; then
|
172
|
172
|
# this is a reconfigure, lets just delete old links
|
173
|
173
|
if [ "$RECONFIGURING" = "true" ] ; then
|
|
@@ -196,7 +196,7 @@ case "$1" in
|
196
|
196
|
/etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
197
|
197
|
fi
|
198
|
198
|
|
199
|
|
- invoke-rc.d nginx reload
|
|
199
|
+ invoke-rc.d nginx reload || true
|
200
|
200
|
elif [[ "$FORCE_APACHE" = "true" && ( -z "$JVB_HOSTNAME_OLD" || "$RECONFIGURING" = "true" ) ]] ; then
|
201
|
201
|
# this is a reconfigure, lets just delete old links
|
202
|
202
|
if [ "$RECONFIGURING" = "true" ] ; then
|
|
@@ -225,7 +225,7 @@ case "$1" in
|
225
|
225
|
/etc/apache2/sites-available/$JVB_HOSTNAME.conf
|
226
|
226
|
fi
|
227
|
227
|
|
228
|
|
- invoke-rc.d apache2 reload
|
|
228
|
+ invoke-rc.d apache2 reload || true
|
229
|
229
|
fi
|
230
|
230
|
|
231
|
231
|
echo "----------------"
|