diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:35:04 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:35:04 +0000 |
commit | 214f81cd9b7c94c10b633627034c21daaee837b2 (patch) | |
tree | 63f193ca9b27d4095af5ac000565ef928ddbb5f6 /debian/preinst | |
parent | Adding upstream version 4.0. (diff) | |
download | chrony-214f81cd9b7c94c10b633627034c21daaee837b2.tar.xz chrony-214f81cd9b7c94c10b633627034c21daaee837b2.zip |
Adding debian version 4.0-8+deb11u2.debian/4.0-8+deb11u2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/preinst')
-rw-r--r-- | debian/preinst | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/preinst b/debian/preinst new file mode 100644 index 0000000..08be098 --- /dev/null +++ b/debian/preinst @@ -0,0 +1,28 @@ +#!/bin/sh +# preinst script for chrony +# +# see: dh_installdeb(1) + +set -e + +# targets: install|upgrade|abort-upgrade + +case "$1" in + upgrade) + ;; + + install|abort-upgrade) + ;; + + *) + echo "preinst 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 |