summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2015-02-26 11:06:20 -0500
committerMicah Anderson <micah@riseup.net>2015-02-26 11:06:20 -0500
commitc0c41ff8ac24c146505da618bfc0117b48c1452f (patch)
treeb445ba77f217107b96420e68ee8c18e44bb384c3 /debian
parenta61e7e512db4edaecd1ce0a5617dae630a0c4394 (diff)
increase expiration to expire in two years, add experimental key
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog8
-rw-r--r--debian/postinst1
-rw-r--r--debian/prerm1
3 files changed, 10 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 4360cc1..54ed1d4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+leap-keyring (2015.02.26) unstable; urgency=medium
+
+ * Update key expiration date to expire in 2 years
+ (adding +1y to existing date) to aid in transition
+ * Added experimental signing key
+
+ -- Micah Anderson <micah@debian.org> Thu, 26 Feb 2015 11:02:19 -0500
+
leap-keyring (2015.01.30) unstable; urgency=medium
* Update key expiration date +1y
diff --git a/debian/postinst b/debian/postinst
index c9fb56a..ebe1959 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -4,4 +4,5 @@ set -e
if which apt-key > /dev/null; then
apt-key add /usr/share/keyrings/leap-keyring.gpg
+ apt-key add /usr/share/keyrings/leap-experimental-keyring.gpg
fi
diff --git a/debian/prerm b/debian/prerm
index 17de1b0..7548411 100644
--- a/debian/prerm
+++ b/debian/prerm
@@ -6,6 +6,7 @@ case "$1" in
remove|purge)
if which apt-key > /dev/null; then
apt-key del 0x1E34A1828E207901
+ apt-key del 0x837C1AD5367429D9
fi
;;
esac