X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Fpostinst;h=b5e9c572a3a339fc4b610237dc328d19ed0b559d;hb=e4977458704e068955a0ca8749035748246817ea;hp=c53065ef3c349d403d78aef27cf14e471503468b;hpb=9e5b1ca169d5d26c7195643f02325655eec515e2;p=puri.git diff --git a/debian/postinst b/debian/postinst index c53065e..b5e9c57 100644 --- a/debian/postinst +++ b/debian/postinst @@ -3,27 +3,9 @@ set -e LISP_PKG=puri -# 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