You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
#! /bin/sh
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
case "$1" in
|
|
remove|deconfigure|failed-upgrade)
|
|
echo Unsetting kubuntu as default mouse cursor theme ...
|
|
# update-alternatives may fail, e.g. if the auto-configured file has gone
|
|
# This is not a problem for us though (LP: #194101)
|
|
update-alternatives --auto x-cursor-theme || true
|
|
|
|
;;
|
|
|
|
purge)
|
|
# remove symbolic links on purge again (careful, only if these *are* symlinks,
|
|
# also don't bail out if s.th. goes wrong (e.g. /media mounted r.o.)
|
|
if [ -h /.hidden ]; then
|
|
rm /.hidden || \
|
|
echo "Could not remove symlink /.hidden, skipping."
|
|
fi
|
|
if [ -h /media/.hidden ]; then
|
|
rm /media/.hidden || \
|
|
echo "Could not remove symlink /media/.hidden, skipping."
|
|
fi
|
|
if [ -h /usr/share/hal/fdi/policy/10osvendor/home/20-ntfs-config-write-policy.fdi ]; then
|
|
rm /usr/share/hal/fdi/policy/10osvendor/home/20-ntfs-config-write-policy.fdi || \
|
|
echo "Could not remove symlink /usr/share/hal/fdi/policy/10osvendor/home/20-ntfs-config-write-policy.fdi, skipping."
|
|
fi
|
|
;;
|
|
|
|
upgrade)
|
|
;;
|
|
|
|
*)
|
|
echo "Unknown argument ($1) for $0"
|
|
;;
|
|
|
|
esac
|