Adding preinst script to remove /usr/share/live/build/includes/squeeze (Closes: #611794).

This commit is contained in:
Daniel Baumann 2011-02-02 12:34:45 +01:00
parent afd63ce871
commit 5964413f16
1 changed files with 25 additions and 0 deletions

25
debian/live-build.preinst vendored Normal file
View File

@ -0,0 +1,25 @@
#!/bin/sh
set -e
case "${1}" in
upgrade)
if [ -h /usr/share/live/build/includes/squeeze ]
then
rm -f /usr/share/live/build/includes/squeeze
fi
;;
install|abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0