diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-04 12:06:08 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-04 12:06:08 -0500 |
commit | 1b6efb141bcf333e5c73a520e701d1de8cafcf4e (patch) | |
tree | 2c8231c62e760299a8109716eecf4647514b3315 /ubuntu/maverick/applications/kdesudo/debian/postinst | |
parent | a2c2f2ed2eaad5d897c9a00ff5d804486751e603 (diff) | |
download | tde-packaging-1b6efb141bcf333e5c73a520e701d1de8cafcf4e.tar.gz tde-packaging-1b6efb141bcf333e5c73a520e701d1de8cafcf4e.zip |
Rename kde packages to tde
Diffstat (limited to 'ubuntu/maverick/applications/kdesudo/debian/postinst')
-rw-r--r-- | ubuntu/maverick/applications/kdesudo/debian/postinst | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ubuntu/maverick/applications/kdesudo/debian/postinst b/ubuntu/maverick/applications/kdesudo/debian/postinst deleted file mode 100644 index d452abce3..000000000 --- a/ubuntu/maverick/applications/kdesudo/debian/postinst +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/sh - -set -e - -package_name=kdesudo-trinity - -if [ -z "$package_name" ]; then - print >&2 "Internal Error. Please report a bug." - exit 1; -fi - -case "$1" in - configure) - dpkg-divert --package $package_name --rename --remove \ - /usr/trinity/bin/kdesu || true - ;; - abort-upgrade) - ;; - *) echo "$0: didn't understand being called with \`$1'" 1>&2 - exit 0;; -esac - -exit 0 |