diff options
author | Slávek Banko <[email protected]> | 2022-02-13 16:22:25 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-02-13 16:22:25 +0100 |
commit | 05452054adc17e389b1a7b3a757ee32f16f5f710 (patch) | |
tree | 9b6a55c462848cb4605ef477a90c3f73bc8c00c7 /ubuntu/_base/applications/system/kpowersave/debian/postrm | |
parent | bf0d3901af8a1f6bd3a37cbbfa8e569e46afa707 (diff) | |
download | tde-packaging-05452054adc17e389b1a7b3a757ee32f16f5f710.tar.gz tde-packaging-05452054adc17e389b1a7b3a757ee32f16f5f710.zip |
DEB kpowersave: Remove packaging files because it is no longer part of the main tree.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'ubuntu/_base/applications/system/kpowersave/debian/postrm')
-rw-r--r-- | ubuntu/_base/applications/system/kpowersave/debian/postrm | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/ubuntu/_base/applications/system/kpowersave/debian/postrm b/ubuntu/_base/applications/system/kpowersave/debian/postrm deleted file mode 100644 index 99bd13d89..000000000 --- a/ubuntu/_base/applications/system/kpowersave/debian/postrm +++ /dev/null @@ -1,26 +0,0 @@ -#! /bin/sh - -set -e - -package_name=kpowersave-trinity - -if [ -z "$package_name" ]; then - print >&2 "Internal Error. Please report a bug." - exit 1; -fi - -case "$1" in - remove) - dpkg-divert --package $package_name --rename --remove /etc/acpi/powerbtn.sh - ;; - purge) - ;; - upgrade) - ;; - *) echo "$0: didn't understand being called with \`$1'" 1>&2 - exit 0;; -esac - -#DEBHELPER# - -exit 0 |