15 lines
389 B
Bash
Executable File
15 lines
389 B
Bash
Executable File
#!/usr/bin/env bash
|
|
IS_BBB_WEB_RUNNING=`ss -an | grep LISTEN | grep 8090 > /dev/null && echo 1 || echo 0`
|
|
|
|
if [ "$IS_BBB_WEB_RUNNING" = "1" ]; then
|
|
echo "bbb-web is running, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "`whoami`" != "bigbluebutton" ]; then
|
|
echo "ERROR: bbb-web must run as bigbluebutton user ( because of the uploaded files permissions )"
|
|
exit 1
|
|
fi
|
|
|
|
exec grails prod run-app --port 8090
|