Your IP : 216.73.216.209


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : //var/lib/dpkg/info/jed-common.prerm

#!/bin/sh

set -e

case "$1" in
    remove|upgrade|deconfigure|failed-upgrade)

        TEMP=$(mktemp)
        printf "Running /usr/share/jed/compile/jed-common..."
        RET=0
        /usr/share/jed/compile/jed-common remove >$TEMP 2>&1 || RET=$?
        if test "$RET" -ne 0 ; then
            echo "failed (see $TEMP)"
            exit $RET
        fi
        echo "done"
        rm -f $TEMP

    ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac



exit 0