1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00
Files
wmaker/debian/libwraster3.postinst
2009-08-24 11:55:20 +02:00

21 lines
273 B
Bash

#! /bin/sh -e
case "$1" in
configure)
ldconfig
;;
abort-upgrade|abort-deconfigure|abort-remove)
# how did we got here? Force a non-zero exit code
exit 1
;;
*)
echo "postinst called with unknown argument: \$1" >&2
;;
esac
#DEBHELPER#
exit 0