diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-11-05 14:06:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-11-05 14:06:39 -0600 |
commit | eb7183200e94fffebb19d1c291f23effa50072d1 (patch) | |
tree | 0a12bef22cfc8f806b3485022dc42c6060fee527 /ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst | |
parent | 6de26a624110cd346d780e9bb175f5d1f8745017 (diff) | |
download | tde-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/applications/tdepowersave/debian/tdepowersave-trinity.postinst')
-rw-r--r-- | ubuntu/maverick/applications/tdepowersave/debian/tdepowersave-trinity.postinst | 12 |
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 |