r5346: Automatic commit for debian_version_2_0-1
[ptester.git] / debian / postinst
1 #! /bin/sh
2 set -e
3
4 LISP_PKG=ptester
5
6 case "$1" in
7     configure)
8         /usr/sbin/register-common-lisp-source ${LISP_PKG}
9         ;;
10     abort-upgrade|abort-remove|abort-deconfigure)
11         ;;
12     *)
13         echo "postinst called with unknown argument \`$1'" >&2
14         exit 1
15         ;;
16 esac
17
18 #DEBHELPER#
19
20 exit 0