diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-03 14:44:58 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-03 14:44:58 -0500 |
commit | 0cc79c34f5e9be7eced52b0565e8e79acfa5f4e6 (patch) | |
tree | c0d0d652fef20159e78fa20b2567661bd7db8e41 /debian/squeeze/applications/kbfx/debian/postinst | |
parent | 6b027437fd51e7874aaffed9e395ddf7913c3ab4 (diff) | |
download | tde-packaging-0cc79c34f5e9be7eced52b0565e8e79acfa5f4e6.tar.gz tde-packaging-0cc79c34f5e9be7eced52b0565e8e79acfa5f4e6.zip |
Add initial Debian Lenny/Squeeze packaging as well as symlink Lucid to Maverick
Diffstat (limited to 'debian/squeeze/applications/kbfx/debian/postinst')
-rw-r--r-- | debian/squeeze/applications/kbfx/debian/postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/squeeze/applications/kbfx/debian/postinst b/debian/squeeze/applications/kbfx/debian/postinst new file mode 100644 index 000000000..e95a6906b --- /dev/null +++ b/debian/squeeze/applications/kbfx/debian/postinst @@ -0,0 +1,25 @@ +#!/bin/sh +# postinst script for kbfx + +set -e + +case "$1" in + configure) + ldconfig + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 + + |