a496e0870b71996706451925c8833d48e6d7a49a
jcasper
  Thu Feb 6 10:51:34 2025 -0800
Pausing GBiB CGI updates until we can get Rocky-compiled CGIs working there, refs #35183

diff --git src/browserbox/root/updateBrowser.sh src/browserbox/root/updateBrowser.sh
index 90977fead99..baaa51e5580 100755
--- src/browserbox/root/updateBrowser.sh
+++ src/browserbox/root/updateBrowser.sh
@@ -185,30 +185,34 @@
     chmod a+x /root/updateBrowser.sh
     /root/updateBrowser.sh $1 notSelf
     exit 0
 fi
 
 rm -f /root/gbibSkipNextUpdate
 
 # check if any hgMirror jobs are running right now
 # check if the group id file exists and also if any processes exist with this group id
 # note that the .pid actually contains a group id, not a process id
 if [ -f /tmp/lastJob.pid ] && [ "$(ps x -o pgid | grep $(cat /tmp/lastJob.pid) | wc -l)" != "0" ] ; then
     echo a hgMirror job is running right now, not updating
     exit 4
 fi
 
+# Avoid updating GBiB binaries while we work through some OS upgrades and changes to our
+# development environment.
+exit 0
+
 # --- now do the update ---
 
 # keep a log of all output of this script and the date
 echo --------------------------------- >> $LOGFILE
 date  >> $LOGFILE
 echo --------------------------------- >> $LOGFILE
 exec >> >(tee -a $LOGFILE) 2>&1
 
 # not done, as old customTrash tables will be in innoDb format
 # and can't be read if we deactivate it now
 # deactivate inno-db support in mysql. Saves 400-500MB of RAM.
 #if ! grep skip-innodb /etc/mysql/my.cnf > /dev/null 2> /dev/null ; then
     #echo - Switching off inno-db in /etc/mysql/my.cnf
     #sed -i '/^.mysqld.$/a skip-innodb' /etc/mysql/my.cnf
     #sed -i '/^.mysqld.$/a default-storage-engine=myisam' /etc/mysql/my.cnf