1
0
Fork 0
chrony/debian/prerm
Daniel Baumann 79ad1c5afd
Adding debian version 4.6.1-3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 09:10:31 +02:00

28 lines
426 B
Bash

#!/bin/sh
# prerm script for chrony
#
# see: dh_installdeb(1)
set -e
# targets: remove|upgrade|deconfigure|failed-upgrade
case "$1" in
remove|upgrade|deconfigure)
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0