summaryrefslogtreecommitdiff
path: root/debian/ssh.prerm
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-05-22 00:22:16 +0100
committerColin Watson <cjwatson@debian.org>2013-05-22 00:22:16 +0100
commit66226af6929845dbe14a477e87237950a690b918 (patch)
tree28aa0c9a8fb168e1e500183945a5a27dc5abd8bc /debian/ssh.prerm
parent8b32ca7b77bf39b2386d5abf0e2c73411c630f63 (diff)
Remove lots of maintainer script support for upgrades from pre-etch
(three releases before current stable).
Diffstat (limited to 'debian/ssh.prerm')
-rw-r--r--debian/ssh.prerm14
1 files changed, 0 insertions, 14 deletions
diff --git a/debian/ssh.prerm b/debian/ssh.prerm
deleted file mode 100644
index 400c92bed..000000000
--- a/debian/ssh.prerm
+++ /dev/null
@@ -1,14 +0,0 @@
1#!/bin/sh -e
2
3case $1 in
4 upgrade)
5 if [ -L /usr/share/doc/ssh ] && \
6 dpkg --compare-versions "$2" lt-nl 1:4.1p1-5; then
7 rm -f /usr/share/doc/ssh
8 fi
9 ;;
10esac
11
12#DEBHELPER#
13
14exit 0