HEX
Server: Apache
System: Linux pdx1-shared-a2-09 6.6.116-grsec-jammy-dirty #1 SMP Sat Nov 8 00:02:42 UTC 2025 x86_64
User: dh_pvsc7i (5084578)
PHP: 8.1.31
Disabled: NONE
Upload Files
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