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.
tde-packaging/debian/_base/core/tdeutils/debian/klaptopdaemon-trinity.prerm

31 lines
471 B

#! /bin/sh
set -e
case "$1" in
remove)
/usr/sbin/dpkg-statoverride --quiet --remove /usr/trinity/bin/klaptop_acpi_helper > /dev/null 2>&1 || true
if [ -e /usr/trinity/bin/klaptop_acpi_helper ]; then
chown root:root /usr/trinity/bin/klaptop_acpi_helper
chmod 0755 /usr/trinity/bin/klaptop_acpi_helper
fi
;;
upgrade|deconfigure)
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0