diff --git a/CHANGELOG.md b/CHANGELOG.md index 60d262e8..c57426f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The **patch** part changes incrementally at each release. * etc-git: add tags for Ansible * evolinux-base: install ncurses-term package * haproxy: install Munin plugins +* listupgrade: add service restart notification for Squid and libstdc++6 * minifirewall: add "check_minifirewall" Nagios plugin (and `minifirewall_status` script) * mysql-oracle: new role to install MySQL 5.7 with Oracle packages * mysql: remount /usr before creating scripts directory diff --git a/listupgrade/templates/listupgrade.sh.j2 b/listupgrade/templates/listupgrade.sh.j2 index 46d5c005..c8e6f335 100644 --- a/listupgrade/templates/listupgrade.sh.j2 +++ b/listupgrade/templates/listupgrade.sh.j2 @@ -159,10 +159,15 @@ for pkg in $packagesParsable; do echo "HAProxy" >>$servicesToRestart elif [ "$pkg" = "varnish" ]; then echo "Varnish" >>$servicesToRestart + elif [ "$pkg" = "squid" ]; then + echo "Squid" >>$servicesToRestart elif [ "$pkg" = "libc6" ]; then echo "Tous les services (mise à jour de libc6)." >$servicesToRestart break + elif [ "$pkg" = "libstdc++6" ]; then + echo "Tous les services (mise à jour de libstdc++6)." >$servicesToRestart + break elif echo "$pkg" |grep -q "^libssl"; then echo "Tous les services (mise à jour de libssl)." >$servicesToRestart break