1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/bin/sh
set -e
# If an upgraded from a version before 0.0.10 is aborted
# and /etc/usbmount.conf has already been moved to
# /etc/usbmount/usbmount.conf, move it back.
if test "$1" = abort-upgrade || test "$1" = abort-install; then
if test -n "$2" && dpkg --compare-versions "$2" lt 0.0.10; then
if test -f /etc/usbmount/usbmount.conf && ! test -e /etc/usbmount.conf; then
mv /etc/usbmount/usbmount.conf /etc/usbmount.conf
fi
if test -d /etc/usbmount; then
rmdir /etc/usbmount || :
fi
fi
fi
# If the package is removed or installing is aborted, try to remove the
# default mountpoints. Failure to do so is not considered fatal.
if test "$1" = remove || test "$1" = abort-install; then
rm -f /media/usb 2> /dev/null || :
for i in 0 1 2 3 4 5 6 7; do
rmdir /media/usb$i 2> /dev/null || :
done
fi
#DEBHELPER#
exit 0
|