452e0a315bf47b4c995fc793db3066ae6e2db082 max Wed Jan 24 09:08:43 2024 -0800 gbic fix: some minimal linuxes have no initscripts yet, no redmine diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh index 72cb5a5..66e4ddd 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 --allowerasing + yum -y install ghostscript rsync ImageMagick R-core curl initscripts --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