fdded708bc8405da6d0ff43d42f0092a872a0a97
max
  Fri Apr 10 01:51:06 2026 -0700
fixing dumb bug in install script, no redmine

diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh
index 8b2aa33961c..0d9d167fc54 100755
--- src/product/installer/browserSetup.sh
+++ src/product/installer/browserSetup.sh
@@ -756,31 +756,31 @@
 }
 
 
 # generic redhat part of mysql and apache installation, also covers centos and rocky
 function installRedhat () {
     enableRhelRepos
 
     echo2 
     echo2 Installing EPEL, ghostscript, libpng
     waitKey
     # make sure we have and EPEL and ghostscript and rsync (not installed on vagrant boxes)
     # imagemagick is required for the session gallery
     yum -y update
 
     # Fedora doesn't have or need EPEL, however, it does not include chkconfig by default
-    yum install -y chkconfig install ghostscript rsync ImageMagick R-core curl initscripts --allowerasing --nobest
+    yum install -y chkconfig ghostscript rsync ImageMagick R-core curl initscripts --allowerasing --nobest
 
     # centos 7 does not provide libpng by default
     if ldconfig -p | grep libpng12.so > /dev/null; then
         echo2 libpng12 found
     else
         yum -y install libpng12
     fi
     
     # install apache if not installed yet
     if [ ! -f /usr/sbin/httpd ]; then
         echo2
         echo2 Installing Apache and making it start on boot
         waitKey
         yum -y install httpd chkconfig
         # start apache on boot