From af5c905ec49085b7c396caf2c5166f0c34cbeb3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 3 Apr 2019 18:05:50 +0200 Subject: DEB: use _base folder for a distro instead of specific distros (squeeze and maverick). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- .../kdebase/debian/kdebase-trinity-bin.postinst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ubuntu/_base/kdebase/debian/kdebase-trinity-bin.postinst (limited to 'ubuntu/_base/kdebase/debian/kdebase-trinity-bin.postinst') diff --git a/ubuntu/_base/kdebase/debian/kdebase-trinity-bin.postinst b/ubuntu/_base/kdebase/debian/kdebase-trinity-bin.postinst new file mode 100644 index 000000000..e385c4f34 --- /dev/null +++ b/ubuntu/_base/kdebase/debian/kdebase-trinity-bin.postinst @@ -0,0 +1,22 @@ +#! /bin/sh + +set -e + +package_name=kdebase-trinity-bin + +if [ -z "$package_name" ]; then + print >&2 "Internal Error. Please report a bug." + exit 1; +fi + +case "$1" in + configure) + chmod +s /opt/trinity/bin/kcheckpass || true + ;; + abort-upgrade) + ;; + *) echo "$0: didn't understand being called with \`$1'" 1>&2 + exit 0;; +esac + +exit 0 -- cgit v1.2.1