X-Git-Url: http://git.kpe.io/?p=getopt.git;a=blobdiff_plain;f=debian%2Fpostinst;fp=debian%2Fpostinst;h=40e672f8d2d65e85f3174c7f29eb7dad301697c4;hp=b17dbde92056868a39552a2849fb26cb62eaa264;hb=84e491ca79c31c8d8aa183b11f476cb0cc77e115;hpb=24aab4e686c623074115e5eb6f476d6125be21a3 diff --git a/debian/postinst b/debian/postinst index b17dbde..40e672f 100755 --- a/debian/postinst +++ b/debian/postinst @@ -3,27 +3,9 @@ set -e LISP_PKG=getopt -# 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