4d6f4b3ded
* Refactor: Make bundle using webpack * Fix: restore after install codes and a few settings * Fix: build script folder permission * Refactor: Remove support to async import on audio bridges * Upgrade npm using nvm * Avoid questions on npm ci execution * Let npm ci install dev dependencies (as we need the build tools here) * Fix: enconding * Fix: old lock files * Remove: bbb-config dependency to bbb-html5 service, bbb-html5 isn't a service anymore * Fix: TS errors * Fix: eslint * Fix: chat styles * npm install with "lockfileVersion": 3 (newer npm) * build: allow nodejs 22 * node 22; drop meteor from CI and bbb-conf * TEMP: use bbb-install without mongo but with node 22 and newer image * build: relax nodejs condition to not trip 22.6 * build: ensure dir /usr/share/bigbluebutton/nginx exists * init sites-available/bbb; drop disable-transparent- * nginx complaining of missing file and ; * TMP: print status of services * WIP: tweak nginx location to debug * Fix: webcam widgets alignments * akka-apps -- update location of settings.yml * build: add locales path for nginx * docs and config changes for removal of meteor * Fix: build encoding and locales enpoint folder path * build: set wss url for media * Add: Enable minimizer and modify to Terser * Fix: TS errors --------- Co-authored-by: Tiago Jacobs <tiago.jacobs@gmail.com> Co-authored-by: Anton Georgiev <anto.georgiev@gmail.com> Co-authored-by: Anton Georgiev <antobinary@users.noreply.github.com>
44 lines
1.6 KiB
Bash
44 lines
1.6 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Install a Big Blue Button testing server on a VM
|
|
|
|
# if these are running, our apt operations may error out unable to get a lock
|
|
sudo systemctl stop unattended-upgrades.service
|
|
echo Waiting for apt-daily.service and apt-daily-upgrade.service
|
|
sudo systemd-run --property="After=apt-daily.service apt-daily-upgrade.service" --wait /bin/true
|
|
|
|
sudo apt update
|
|
sudo DEBIAN_FRONTEND=noninteractive apt -y upgrade
|
|
|
|
DOMAIN=$(hostname --domain)
|
|
FQDN=$(hostname --fqdn)
|
|
|
|
EMAIL="root@$FQDN"
|
|
|
|
# /bbb-install.sh (the proper version; either 2.4, 2.5 or 2.6) is created by gns3-bbb.py
|
|
# INSTALL_OPTIONS and RELEASE get passed in the environment from gns3-bbb.py
|
|
#
|
|
# INSTALL_OPTIONS can include -w (firewall) -a (api demos; deprecated in 2.6) -r (repository)
|
|
|
|
sudo /bbb-install.sh -v $RELEASE -s $FQDN -e $EMAIL $INSTALL_OPTIONS
|
|
|
|
sudo bbb-conf --salt bbbci
|
|
echo "NODE_EXTRA_CA_CERTS=/usr/local/share/ca-certificates/bbb-dev/bbb-dev-ca.crt"
|
|
|
|
# bbb-conf --salt doesn't set the shared secret on the web demo
|
|
if [ -r /var/lib/tomcat9/webapps/demo/bbb_api_conf.jsp ]; then
|
|
sudo sed -i '/salt/s/"[^"]*"/"bbbci"/' /var/lib/tomcat9/webapps/demo/bbb_api_conf.jsp
|
|
fi
|
|
|
|
# if nginx didn't start because of a hash bucket size issue,
|
|
# certbot didn't work properly and we need to re-run the entire install script
|
|
if systemctl -q is-failed nginx; then
|
|
sudo sed -i '/server_names_hash_bucket_size/s/^\(\s*\)# /\1/' /etc/nginx/nginx.conf
|
|
sudo /bbb-install.sh -v $RELEASE -s $FQDN -e $EMAIL $INSTALL_OPTIONS
|
|
fi
|
|
|
|
# We can't restart if nginx isn't running. It'll just complain "nginx.service is not active, cannot reload"
|
|
# sudo bbb-conf --restart
|
|
sudo bbb-conf --stop
|
|
sudo bbb-conf --start
|