28c1e8bc50ff54c6672c27d6aa8c56f8c2ae2bf9 max Wed Jan 24 09:06:49 2024 -0800 gbic fix: if curl already exists, allow yum to replace it, no redmine diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh index 74c822f..72cb5a5 100644 --- src/product/installer/browserSetup.sh +++ src/product/installer/browserSetup.sh @@ -730,31 +730,31 @@ function installRedhat () { 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 if cat /etc/redhat-release | grep edora > /dev/null; then yum -y install chkconfig else yum -y install epel-release fi - yum -y install ghostscript rsync ImageMagick R-core curl + yum -y install ghostscript rsync ImageMagick R-core curl --allowerasing # 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