X-Git-Url: http://git.kpe.io/?p=cl-base64.git;a=blobdiff_plain;f=debian%2Fpostinst;h=40ae7d75b092a32e0d97f0064d3448cbbae13117;hp=9cbf5edff2429aebbf61206b88a7d10002666cab;hb=82dad9251bca87c5e73c1506c81f2b8b19c574a0;hpb=c5cbb82b14acd50e5869053157dab7b4d0bcc954 diff --git a/debian/postinst b/debian/postinst index 9cbf5ed..40ae7d7 100755 --- a/debian/postinst +++ b/debian/postinst @@ -3,27 +3,9 @@ set -e LISP_PKG=cl-base64 -# 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) ;; @@ -33,9 +15,6 @@ case "$1" in ;; esac -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - #DEBHELPER# exit 0