c1baf8f9ea237f80359fff57e69c15fd1c2e77ab max Tue Jan 9 10:05:43 2024 -0800 if apache is already installed, make sure that chkconfig is installed, email from Jorge diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh index aa4887d..bfc2310 100644 --- src/product/installer/browserSetup.sh +++ src/product/installer/browserSetup.sh @@ -807,30 +807,31 @@ echo2 echo2 Installing the Mysql or MariaDB server and make it start at boot. waitKey moveAwayMyCnf yum -y install $MYSQLPKG # Fedora 20 names the package mysql-server but it actually contains mariadb MYSQLD=mysqld MYSQLVER=`mysql --version` if [[ $MYSQLVER =~ "MariaDB" ]]; then MYSQLD=mariadb fi # start mysql on boot + yum -y install chkconfig chkconfig --level 2345 $MYSQLD on # make sure that missing values in Mysql insert statements do not trigger errors, #18368: deactivate strict mode mysqlStrictModeOff # start mysql now startMysql secureMysql SET_MYSQL_ROOT=1 else echo2 Mysql already installed fi