summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/metapackages/trinity-apt-archive/debian/postinst
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-11-27 18:45:05 +0100
committerSlávek Banko <slavek.banko@axis.cz>2019-11-27 18:45:21 +0100
commit9b24e6307fbd58c89bfc6734d2eaf2b120a4c067 (patch)
treec9e910a9d125d66192002f4d1b093d603cf3d035 /ubuntu/_base/metapackages/trinity-apt-archive/debian/postinst
parentd04cb2490d81a8a3383cca822e6e4f84f6e03a1d (diff)
downloadtde-packaging-9b24e6307fbd58c89bfc6734d2eaf2b120a4c067.tar.gz
tde-packaging-9b24e6307fbd58c89bfc6734d2eaf2b120a4c067.zip
DEB trinity-apt-archive + trinity-keyring: Update metapackages
+ Split apt sources package from keyring package. + Change repository url to http-redirector on the mirror. + Key is installed as file into /etc/apt/trusted.gpg.d instead of adding into apt keyring. + Add a second key for the trinity archive. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/_base/metapackages/trinity-apt-archive/debian/postinst')
-rw-r--r--ubuntu/_base/metapackages/trinity-apt-archive/debian/postinst24
1 files changed, 24 insertions, 0 deletions
diff --git a/ubuntu/_base/metapackages/trinity-apt-archive/debian/postinst b/ubuntu/_base/metapackages/trinity-apt-archive/debian/postinst
new file mode 100644
index 000000000..0319ce224
--- /dev/null
+++ b/ubuntu/_base/metapackages/trinity-apt-archive/debian/postinst
@@ -0,0 +1,24 @@
+#!/bin/sh
+# postinst script for trinity-apt-archive
+
+set -e
+
+case "$1" in
+ configure)
+ ;;
+
+ remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+ ;;
+
+ *)
+ 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