Your IP : 216.73.216.209


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

#!/bin/sh

set -e

. /usr/share/debconf/confmodule

case "$1" in
  configure)

	TEMP=$(mktemp)

	printf "Running /usr/share/jed/compile/jed-common..."
	if ! /usr/share/jed/compile/jed-common install >$TEMP 2>&1; then
		echo "failed (see $TEMP)"
                exit 1
	fi
	echo "done"

	rm $TEMP
	;;

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

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