Release 22.12 #165

Merged
jlecour merged 76 commits from unstable into stable 2022-12-14 12:02:46 +01:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 3c2369a3a2 - Show all commits

View file

@ -32,6 +32,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* evolinux-user: Add sudoers privilege for chck php\_fpm81
* evomaintenance: allow missing API endpoint if APi is disabled
* java: use default JRE package when version is not specified
* listupgrade: better detection for PostgreSQL
* lxc-solr: detect the real partition options
* lxc-solr: download URL according to Solr Version
* lxc-solr: set homedir and port at install

View file

@ -240,7 +240,7 @@ main() {
echo "MySQL" >>"${servicesToRestart}"
elif echo "${pkg}" | grep -q "^mariadb-server"; then
echo "MariaDB" >>"${servicesToRestart}"
elif echo "${pkg}" | grep -qE "^postgresql-[[:digit:]]+\.[[:digit:]]+$"; then
elif echo "${pkg}" | grep -qE "^postgresql-[[:digit:]]+(\.[[:digit:]]+)?$"; then
echo "PostgreSQL" >>"${servicesToRestart}"
elif echo "${pkg}" | grep -qE "^tomcat[[:digit:]]+$"; then
echo "Tomcat" >>"${servicesToRestart}"