summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/metapackages/trinity-keyring/debian/prerm
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-08-03 04:03:15 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-08-03 04:16:58 +0200
commit11a46d9043be9d955c87f6db5b99d2464de6460d (patch)
treebf6a37fc7e279e948e7fbee0f4c931622d6891f5 /ubuntu/maverick/metapackages/trinity-keyring/debian/prerm
parent8f9434f8329acf44122b85c400ef7db378facef3 (diff)
downloadtde-packaging-11a46d9043be9d955c87f6db5b99d2464de6460d.tar.gz
tde-packaging-11a46d9043be9d955c87f6db5b99d2464de6460d.zip
DEB trinity-keyring: Key is installed as file into /etc/apt/trusted.gpg.d
instead of adding into apt keyring Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 8b0882da7e9f22c630bcfe41a9125ecb048a92ee)
Diffstat (limited to 'ubuntu/maverick/metapackages/trinity-keyring/debian/prerm')
-rw-r--r--ubuntu/maverick/metapackages/trinity-keyring/debian/prerm28
1 files changed, 0 insertions, 28 deletions
diff --git a/ubuntu/maverick/metapackages/trinity-keyring/debian/prerm b/ubuntu/maverick/metapackages/trinity-keyring/debian/prerm
deleted file mode 100644
index 5b746100f..000000000
--- a/ubuntu/maverick/metapackages/trinity-keyring/debian/prerm
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-# prerm script for trinity-keyring
-
-set -e
-
-case "$1" in
- remove)
- if [ -x /usr/bin/apt-key ]; then
- # Key F5CFC95C (2014.06.08)
- apt-key del F5CFC95C 2> /dev/null || true
- fi
- ;;
-
- upgrade|failed-upgrade|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