Import debian 5.9p1-1
[openssh.git] / debian / ssh.postinst
diff --git a/debian/ssh.postinst b/debian/ssh.postinst
new file mode 100644 (file)
index 0000000..cb12780
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+action="$1"
+oldversion="$2"
+
+if [ "$action" != configure ]; then
+       exit 0
+fi
+
+if [ ! -L /usr/share/doc/ssh ] && \
+   dpkg --compare-versions "$oldversion" lt-nl 1:4.1p1-5; then
+       rm -rf /usr/share/doc/ssh
+       ln -s openssh-client /usr/share/doc/ssh
+fi
+
+#DEBHELPER#
+
+exit 0