summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/applications/kpowersave-nohal/debian/postrm
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-08 19:51:03 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-08 19:51:03 -0500
commit2092630a9ad186705d73db0c87db757bd4401b6a (patch)
tree0cc9a59b9d8db16350835ee2d606a8ee7c371d09 /ubuntu/precise/applications/kpowersave-nohal/debian/postrm
parent8feea0de98a45a098e8d7f5cc297deeb2bd9f359 (diff)
downloadtde-packaging-2092630a9ad186705d73db0c87db757bd4401b6a.tar.gz
tde-packaging-2092630a9ad186705d73db0c87db757bd4401b6a.zip
Rename knetworkmanager9 and kpwoersave-nohal modules in Debian and Ubuntu
Diffstat (limited to 'ubuntu/precise/applications/kpowersave-nohal/debian/postrm')
-rw-r--r--ubuntu/precise/applications/kpowersave-nohal/debian/postrm24
1 files changed, 0 insertions, 24 deletions
diff --git a/ubuntu/precise/applications/kpowersave-nohal/debian/postrm b/ubuntu/precise/applications/kpowersave-nohal/debian/postrm
deleted file mode 100644
index 9e8ecc977..000000000
--- a/ubuntu/precise/applications/kpowersave-nohal/debian/postrm
+++ /dev/null
@@ -1,24 +0,0 @@
-#! /bin/sh
-
-set -e
-
-package_name=kpowersave-nohal-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
-
-exit 0