1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh -e
case "$1" in
configure)
if [ -e /etc/lsb-release ]; then
MD5SUM=`md5sum /etc/lsb-release | cut -d" " -f1`
if [ "$MD5SUM" = "b5bfe10d9b02fb4e4a45337d1c4d88ab" ]; then
rm -f /etc/lsb-release
fi
fi
# remove python-support bits which were installed in intermediate
# karmic versions; this can be dropped in lucid+1; LP #418017
if dpkg --compare-versions "$2" le-nl 4.0-0ubuntu7; then
rm -f /usr/lib/pymodules/python2.6/lsb_release.py
fi
;;
esac
#DEBHELPER#
|