Package: libssl1.0.0 Version: 1.0.1g-3 Severity: normal Dear Maintainer,
Recent update to libssl only restarts services if the debconf option libraries/restart-without-asking is set to false. In case it is set to true no restart takes place. From the postinst code it is clear that the $answer variable never gets set to 'yes' in this case: Checking for services that may need to be restarted...done. Checking for services that may need to be restarted...done. Checking init scripts... Proposed patch is attached. -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.13-1-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libssl1.0.0:amd64 depends on: ii debconf [debconf-2.0] 1.5.53 ii libc6 2.18-4 ii multiarch-support 2.18-4 libssl1.0.0:amd64 recommends no packages. libssl1.0.0:amd64 suggests no packages. -- debconf information excluded
--- libssl1.0.0:amd64.postinst.dist 2014-04-25 10:03:31.052118289 +0200 +++ libssl1.0.0:amd64.postinst 2014-04-25 10:07:39.019787117 +0200 @@ -163,6 +163,8 @@ else answer=no fi + else + answer=yes fi echo if [ "$answer" = yes ] && [ "$services" != "" ]; then

