X-Git-Url: http://git.kpe.io/?p=lml.git;a=blobdiff_plain;f=debian%2Fpostinst;fp=debian%2Fpostinst;h=d878702c2478ac18f6e923bd27f6dcf2d7a93874;hp=d9021dc697a469a1820c3e8177dfbef85aabc2a7;hb=59c348ff593ab241cb5f8aeefe2e632b712413eb;hpb=3ef5aa17b545f5275fece4bb5f6be45124c8d6cc diff --git a/debian/postinst b/debian/postinst index d9021dc..d878702 100644 --- a/debian/postinst +++ b/debian/postinst @@ -1,50 +1,20 @@ #! /bin/sh -# postinst script for lml -# -# see: dh_installdeb(1) - set -e -# package name according to lisp LISP_PKG=lml -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - case "$1" in configure) - /usr/sbin/register-common-lisp-source ${LISP_PKG} - - ;; - + register-common-lisp-source ${LISP_PKG} + ;; abort-upgrade|abort-remove|abort-deconfigure) - - ;; - + ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 - ;; + ;; esac -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - #DEBHELPER# exit 0