diff options
author | Colin Watson <cjwatson@debian.org> | 2013-05-22 00:22:16 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2013-05-22 00:22:16 +0100 |
commit | 66226af6929845dbe14a477e87237950a690b918 (patch) | |
tree | 28aa0c9a8fb168e1e500183945a5a27dc5abd8bc /debian/openssh-client.config | |
parent | 8b32ca7b77bf39b2386d5abf0e2c73411c630f63 (diff) |
Remove lots of maintainer script support for upgrades from pre-etch
(three releases before current stable).
Diffstat (limited to 'debian/openssh-client.config')
-rw-r--r-- | debian/openssh-client.config | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/openssh-client.config b/debian/openssh-client.config deleted file mode 100644 index 6d678055f..000000000 --- a/debian/openssh-client.config +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | action=$1 | ||
4 | version=$2 | ||
5 | |||
6 | # Source debconf library. | ||
7 | . /usr/share/debconf/confmodule | ||
8 | db_version 2.0 | ||
9 | |||
10 | # Was ssh-keysign's setuid bit turned off using the obsolete debconf | ||
11 | # question? If so, turn this into a statoverride. (Ugh.) | ||
12 | if dpkg --compare-versions "$2" lt 1:4.1p1-2 && \ | ||
13 | db_get ssh/SUID_client && [ "$RET" = false ] && | ||
14 | [ -x /usr/sbin/dpkg-statoverride ] && \ | ||
15 | ! dpkg-statoverride --list /usr/lib/ssh-keysign && \ | ||
16 | ! dpkg-statoverride --list /usr/lib/openssh/ssh-keysign; then | ||
17 | dpkg-statoverride --update --add root root 0755 \ | ||
18 | /usr/lib/openssh/ssh-keysign | ||
19 | fi | ||
20 | |||
21 | exit 0 | ||