X-Git-Url: http://git.kpe.io/?p=cl-modlisp.git;a=blobdiff_plain;f=debian%2Fpostinst;fp=debian%2Fpostinst;h=e819b0caecc17503d3b049490617f634bf690e69;hp=ac7a528fda18feb83926afa3015e573ec75abba1;hb=c84386f15c424236ca44c7981c26f8962a32e547;hpb=9bad2a52de75a0e2e9ed07a6e691061c078e1ae7 diff --git a/debian/postinst b/debian/postinst index ac7a528..e819b0c 100644 --- a/debian/postinst +++ b/debian/postinst @@ -3,43 +3,18 @@ set -e LISP_PKG=modlisp -# 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