summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-11-05 14:06:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-11-05 14:06:39 -0600
commiteb7183200e94fffebb19d1c291f23effa50072d1 (patch)
tree0a12bef22cfc8f806b3485022dc42c6060fee527 /ubuntu/maverick
parent6de26a624110cd346d780e9bb175f5d1f8745017 (diff)
downloadtde-packaging-eb7183200e94fffebb19d1c291f23effa50072d1.tar.gz
tde-packaging-eb7183200e94fffebb19d1c291f23effa50072d1.zip
Call ldconfig after installing tdepowersave-trinity on Debian and Ubuntu
This resolves Bug 1694
Diffstat (limited to 'ubuntu/maverick')
-rw-r--r--ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst12
1 files changed, 12 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst b/ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst
new file mode 100644
index 000000000..6f092476e
--- /dev/null
+++ b/ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+# postinst script for tdepowersave-trinity
+
+set -e
+
+if [ "$1" = "configure" ] ; then
+ ldconfig
+fi
+
+#DEBHELPER#
+
+exit 0