summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/applications/tdepowersave/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/tdepowersave/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/tdepowersave/debian/postrm')
-rw-r--r--ubuntu/precise/applications/tdepowersave/debian/postrm24
1 files changed, 24 insertions, 0 deletions
diff --git a/ubuntu/precise/applications/tdepowersave/debian/postrm b/ubuntu/precise/applications/tdepowersave/debian/postrm
new file mode 100644
index 000000000..9e8ecc977
--- /dev/null
+++ b/ubuntu/precise/applications/tdepowersave/debian/postrm
@@ -0,0 +1,24 @@
+#! /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