HEX
Server: Apache
System: Linux pdx1-shared-a1-11 6.6.116-grsec-jammy-dirty #1 SMP Sat Nov 8 00:02:42 UTC 2025 x86_64
User: mollywopper (10344313)
PHP: 7.4.33
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