diff options
Diffstat (limited to 'ubuntu/raring/applications/kbfx/debian/postinst')
-rw-r--r-- | ubuntu/raring/applications/kbfx/debian/postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ubuntu/raring/applications/kbfx/debian/postinst b/ubuntu/raring/applications/kbfx/debian/postinst new file mode 100644 index 000000000..e95a6906b --- /dev/null +++ b/ubuntu/raring/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 + + |