Skip to content
Snippets Groups Projects
Unverified Commit a4c6e984 authored by Shashank D's avatar Shashank D Committed by GitHub
Browse files

Show the status of nodejs workers in bbb-conf

bbb-conf --status will show status of frontend and backend nodejs workers
parent c925817f
No related branches found
No related tags found
No related merge requests found
......@@ -420,6 +420,20 @@ display_bigbluebutton_status () {
if [ -f /usr/lib/systemd/system/bbb-html5.service ]; then
units="$units mongod bbb-html5 bbb-webrtc-sfu kurento-media-server"
source /usr/share/meteor/bundle/bbb-html5-with-roles.conf
if [ -f /etc/bigbluebutton/bbb-html5-with-roles.conf ]; then
source /etc/bigbluebutton/bbb-html5-with-roles.conf
fi
for ((i = 1 ; i <= $NUMBER_OF_BACKEND_NODEJS_PROCESSES; i++)); do
units="$units bbb-html5-backend@$i"
done
for ((i = 1; i <= NUMBER_OF_FRONTEND_NODEJS_PROCESSES; i++)); do
units="$units bbb-html5-frontend@$i"
done
fi
if [ -f /usr/share/etherpad-lite/settings.json ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment