Version in base suite: 4.6.1-3+deb13u1 Base version: chrony_4.6.1-3+deb13u1 Target version: chrony_4.6.1-3+deb13u2 Base file: /srv/ftp-master.debian.org/ftp/pool/main/c/chrony/chrony_4.6.1-3+deb13u1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/c/chrony/chrony_4.6.1-3+deb13u2.dsc changelog | 8 ++++++++ chrony.if-post-down | 4 +--- chrony.if-up | 4 +--- 3 files changed, 10 insertions(+), 6 deletions(-) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp37d8cflg/chrony_4.6.1-3+deb13u1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp37d8cflg/chrony_4.6.1-3+deb13u2.dsc: no acceptable signature found diff -Nru chrony-4.6.1/debian/changelog chrony-4.6.1/debian/changelog --- chrony-4.6.1/debian/changelog 2026-02-16 16:34:12.000000000 +0000 +++ chrony-4.6.1/debian/changelog 2026-06-24 18:05:59.000000000 +0000 @@ -1,3 +1,11 @@ +chrony (4.6.1-3+deb13u2) trixie; urgency=medium + + * debian/chrony.if-{post-down,up}: + - Adjust the if-up and if-down hook scripts so that they always exit + successfully. (Closes: #1011533) + + -- Vincent Blut Wed, 24 Jun 2026 20:05:59 +0200 + chrony (4.6.1-3+deb13u1) trixie; urgency=medium * debian/patches/: diff -Nru chrony-4.6.1/debian/chrony.if-post-down chrony-4.6.1/debian/chrony.if-post-down --- chrony-4.6.1/debian/chrony.if-post-down 2026-02-16 16:34:12.000000000 +0000 +++ chrony-4.6.1/debian/chrony.if-post-down 2026-06-24 18:05:59.000000000 +0000 @@ -1,10 +1,8 @@ #!/bin/sh -set -e - [ -x /usr/sbin/chronyd ] || exit 0 -if [ -e /run/chrony/chronyd.pid ]; then +if [ -S /run/chrony/chronyd.sock ]; then chronyc onoffline > /dev/null 2>&1 fi diff -Nru chrony-4.6.1/debian/chrony.if-up chrony-4.6.1/debian/chrony.if-up --- chrony-4.6.1/debian/chrony.if-up 2026-02-16 16:34:12.000000000 +0000 +++ chrony-4.6.1/debian/chrony.if-up 2026-06-24 18:05:59.000000000 +0000 @@ -1,10 +1,8 @@ #!/bin/sh -set -e - [ -x /usr/sbin/chronyd ] || exit 0 -if [ -e /run/chrony/chronyd.pid ]; then +if [ -S /run/chrony/chronyd.sock ]; then chronyc onoffline > /dev/null 2>&1 fi