X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Fpostinst.template;h=be0cc161d7f5c0a65e72f78552fd21d8ff3edc5f;hb=d9b90caa2f0450deffff461b70294bc741faae7f;hp=58e9698946b65ab06fe019c255fac625e1949f6f;hpb=5de01471c06704a60c66d674608e4c7cbd2776bb;p=clsql.git diff --git a/debian/postinst.template b/debian/postinst.template index 58e9698..be0cc16 100644 --- a/debian/postinst.template +++ b/debian/postinst.template @@ -1,28 +1,19 @@ -#! /bin/sh -# From UncommonSQL package +#!/bin/bash -e -set -e - -# package name according to lisp -LISP_PKG=%% +pkg=%% case "$1" in configure) - /usr/sbin/register-common-lisp-source ${LISP_PKG} + /usr/sbin/register-common-lisp-source ${pkg} ;; - abort-upgrade|abort-remove|abort-deconfigure) ;; - *) echo "postinst called with unknown argument \`$1'" >&2 exit 0 ;; esac -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - #DEBHELPER# exit 0