diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:46:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:46:10 +0000 |
commit | 5f3dfa0191c256c769a27cda0de962eadb849fdd (patch) | |
tree | c781abc701e92e804c26889f35ea072cd4b09c93 /debian/tdb-tools.postinst | |
parent | Adding upstream version 1.4.8. (diff) | |
download | tdb-5f3dfa0191c256c769a27cda0de962eadb849fdd.tar.xz tdb-5f3dfa0191c256c769a27cda0de962eadb849fdd.zip |
Adding debian version 1.4.8-2.debian/1.4.8-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tdb-tools.postinst')
-rw-r--r-- | debian/tdb-tools.postinst | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/tdb-tools.postinst b/debian/tdb-tools.postinst new file mode 100644 index 0000000..0fbc2a4 --- /dev/null +++ b/debian/tdb-tools.postinst @@ -0,0 +1,27 @@ +#! /bin/sh +# postinst script for tdb-tools +# +# see: dh_installdeb(1) + +set -e + +case "$1" in + configure) + update-alternatives --install /usr/bin/tdbbackup tdbbackup /usr/bin/tdbbackup.tdbtools 10 --slave /usr/share/man/man8/tdbbackup.8.gz tdbbackup.8.gz /usr/share/man/man8/tdbbackup.tdbtools.8.gz + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 + + |