Adding preinst script to remove /usr/share/live/build/includes/squeeze (Closes: #611794).
This commit is contained in:
parent
afd63ce871
commit
5964413f16
|
@ -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
|
Loading…
Reference in New Issue