diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:09:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:09:42 +0000 |
commit | 33895c7300d6e43e4d3df30cb192d17891d799be (patch) | |
tree | 9415c122d9b49604b0e3748f4c41b2bd937f63ba /debian/chrony.if-post-down | |
parent | Adding upstream version 4.3. (diff) | |
download | chrony-62a4173caaa6fa2fe726f2844b589293e49e6d83.tar.xz chrony-62a4173caaa6fa2fe726f2844b589293e49e6d83.zip |
Adding debian version 4.3-2+deb12u1.debian/4.3-2+deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/chrony.if-post-down')
-rw-r--r-- | debian/chrony.if-post-down | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/chrony.if-post-down b/debian/chrony.if-post-down new file mode 100644 index 0000000..4cc0796 --- /dev/null +++ b/debian/chrony.if-post-down @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +[ -x /usr/sbin/chronyd ] || exit 0 + +if [ -e /run/chrony/chronyd.pid ]; then + chronyc onoffline > /dev/null 2>&1 +fi + +exit 0 |