diff options
author | Denis Kozadaev <denis@dilos.org> | 2020-01-30 22:13:12 +0300 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-03-02 23:40:36 +0100 |
commit | 54987baa2946868ae04e93090d4da5693afaa3b1 (patch) | |
tree | 6a989c0fb1d22986af268dcd240803f52a60b433 /dilos/tdebase/debian/ksmserver-trinity.postrm | |
parent | 5593d90a563fc02f6baf3316388f13b9b8957cd0 (diff) | |
download | tde-packaging-54987baa2946868ae04e93090d4da5693afaa3b1.tar.gz tde-packaging-54987baa2946868ae04e93090d4da5693afaa3b1.zip |
DilOS: tdebase build pack
Signed-off-by: Denis Kozadaev <denis@dilos.org>
(cherry picked from commit 042414011edfd405230b65e77e2b14870852760f)
Diffstat (limited to 'dilos/tdebase/debian/ksmserver-trinity.postrm')
-rw-r--r-- | dilos/tdebase/debian/ksmserver-trinity.postrm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dilos/tdebase/debian/ksmserver-trinity.postrm b/dilos/tdebase/debian/ksmserver-trinity.postrm new file mode 100644 index 000000000..3cc29966d --- /dev/null +++ b/dilos/tdebase/debian/ksmserver-trinity.postrm @@ -0,0 +1,25 @@ +#!/bin/sh -e + +if [ "${BASEDIR:=/}" = "/" ]; then + BASEDIR="" +fi + +package_name=ksmserver-trinity + +case "$1" in + remove) + ;; + + purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |