blob: 503524a119e9362440bc45d606808f2cf367fb58 (
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
|
#! /bin/sh -e
package_name=ksmserver-trinity
case "$1" in
upgrade)
# Remove old-style Plasma diversions
divert=`dpkg-divert --listpackage "/usr/bin/plasma"`
if [ -n "$divert" ]; then
dpkg-divert --package $package_name --rename --remove /usr/bin/plasma
fi
divert=`dpkg-divert --listpackage "/usr/bin/plasma-desktop"`
if [ -n "$divert" ]; then
dpkg-divert --package $package_name --rename --remove /usr/bin/plasma-desktop
fi
mkdir -p /usr/share/autostart
;;
install)
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
|