removed php restart that made webgui update fail

This commit is contained in:
mcguirepr89
2022-02-10 11:06:36 -05:00
parent f987e96990
commit f9b9541e09
+6 -1
View File
@@ -33,7 +33,12 @@ install_mariadb() {
if [[ "${VERSION_CODENAME}" == "buster" ]];then
USER=${USER} ${my_dir}/update_db_pwd_buster.sh
elif [[ "${VERSION_CODENAME}" == "bullseye" ]];then
USER=${USER} ${my_dir}/update_db_pwd_bullseye.sh
mysql -e "
SET PASSWORD FOR 'birder'@'localhost' = PASSWORD('${DB_PWD}');
FLUSH PRIVILEGES";
sed -i "s/mysqli.default_host =.*/mysqli.default_host = localhost/g" /etc/php/7.4/fpm/php.ini
sed -i "s/mysqli.default_user =.*/mysqli.default_user = birder/g" /etc/php/7.4/fpm/php.ini
sed -i "s/mysqli.default_pw =.*/mysqli.default_pw = ${DB_PWD}/g" /etc/php/7.4/fpm/php.ini
fi
}