[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:18971] Re: #50178: xfs-xtt postrm script does not include remove, and purge support doesn't work



Hi.

This is caused by

case "$1" in
  upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) exit 0 ;;
  *) 
    echo "ERROR: xfs-xtt postrm called with unknown argument \"$1\"."
    echo "Aborting removal of xfs-xtt package."
    exit 1 ;;
esac

in xfs-xtt.postrm

This should be started with

case "$1" in
  remove|purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) exit 0 ;;
  *) 

I have checked this modification, and It works on my system.

Regards.

P.S.

Here is the description quoted from a sample from debhelper

#! /bin/sh
# postrm script for sample
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <postrm> `remove'
#        * <postrm> `purge'
#        * <old-postrm> `upgrade' <new-version>
#        * <new-postrm> `failed-upgrade' <old-version>
#        * <new-postrm> `abort-install'
#        * <new-postrm> `abort-install' <old-version>
#        * <new-postrm> `abort-upgrade' <old-version>
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see /usr/doc/packaging-manual/

case "$1" in
       purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

                                # update the menu system
#        if [ -x /usr/bin/update-menus ]; then update-menus; fi

        ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 0

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#


-- 
  Taketoshi Sano: <sano@debian.org>,<sano@debian.or.jp>,<kgh12351@xxxxxxxxxxx>