diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-08-03 04:03:15 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-08-03 04:16:11 +0200 |
commit | 8b0882da7e9f22c630bcfe41a9125ecb048a92ee (patch) | |
tree | 45dacae6349e559331eb430b8134e0868cddebd8 /ubuntu/maverick/metapackages/trinity-keyring/debian/prerm | |
parent | 10a972bbd7ab75c6d3cd68ec3e30b8a70bf3b168 (diff) | |
download | tde-packaging-8b0882da7e9f22c630bcfe41a9125ecb048a92ee.tar.gz tde-packaging-8b0882da7e9f22c630bcfe41a9125ecb048a92ee.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>
Diffstat (limited to 'ubuntu/maverick/metapackages/trinity-keyring/debian/prerm')
-rw-r--r-- | ubuntu/maverick/metapackages/trinity-keyring/debian/prerm | 28 |
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 |