Files
desktop-base/debian/postrm
Yves-Alexis Perez 7a144b81b2 * plymouth:
- add spacefun theme from Aurelien Couderc.
* Makefile:
  - install spacefun plymouth theme
* debian/post{inst,rm}: configure plymouth theme if plymouth is installed.
* debian/copyright updated for plymouth theme.
2010-11-27 14:11:11 +00:00

23 lines
488 B
Bash

#!/bin/sh -e
#DEBHELPER#
if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
dpkg-maintscript-helper rm_conffile /etc/kde3/kdeglobals 6.0.1 -- "$@"
fi
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
if which update-grub2 > /dev/null ; then
update-grub2 || true
fi
fi
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
if [ -x /usr/sbin/plymouth-set-default-theme ];
then
plymouth-set-default-theme -r -R ||true
fi
fi