blob: 3727a65c106157141f35dc01cdcda4fd221e11eb (
plain)
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
30
31
32
33
34
35
36
37
38
39
|
#! /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
|