HEX
Server: Apache
System: Linux iad1-shared-b8-22 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User: dh_7uh9vd (6523960)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //var/lib/dpkg/info/jed.postinst
#!/bin/sh

set -e

case "$1" in
  configure)
    update-alternatives \
    	--install /usr/bin/editor editor /usr/bin/jed 42 \
    	--slave /usr/share/man/man1/editor.1.gz editor.1.gz /usr/share/man/man1/jed.1.gz;

    update-alternatives \
    	--install /usr/bin/jed-script jed-script /usr/bin/jed 50 \
    	--slave /usr/share/man/man1/jed-script.1.gz jed-script.1.gz /usr/share/man/man1/jed.1.gz;

    TEMP=$(mktemp)
    RET=0
    printf "Updating precompiled files..."
    run-parts --exit-on-error --arg=install /usr/share/jed/compile/ \
        >$TEMP 2>&1 || RET=$?
    if test "$RET" -ne 0 ; then
	echo "failed (see $TEMP)"
	exit $RET
    fi
    echo "done"
    rm $TEMP
    ;;

  abort-upgrade|abort-remove|abort-deconfigure)
    ;;

  *)
    echo "unknown argument --> \"$1"\" >&2
    exit 0
    ;;
esac