From 54987baa2946868ae04e93090d4da5693afaa3b1 Mon Sep 17 00:00:00 2001 From: Denis Kozadaev Date: Thu, 30 Jan 2020 22:13:12 +0300 Subject: DilOS: tdebase build pack Signed-off-by: Denis Kozadaev (cherry picked from commit 042414011edfd405230b65e77e2b14870852760f) --- dilos/tdebase/debian/twin-trinity.postinst | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 dilos/tdebase/debian/twin-trinity.postinst (limited to 'dilos/tdebase/debian/twin-trinity.postinst') diff --git a/dilos/tdebase/debian/twin-trinity.postinst b/dilos/tdebase/debian/twin-trinity.postinst new file mode 100644 index 000000000..582ce4ce4 --- /dev/null +++ b/dilos/tdebase/debian/twin-trinity.postinst @@ -0,0 +1,45 @@ +#!/bin/sh +# postinst script for konqueror +# +# see: dh_installdeb(1) + +set -e +if [ "${BASEDIR:=/}" = "/" ]; then + BASEDIR="" +fi + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +case "$1" in + configure) + update-alternatives --install /usr/bin/x-window-manager x-window-manager /usr/bin/twin 50 + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst 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 + + -- cgit v1.2.1