postinst is in oar-server 2.5.7-3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #! /bin/sh
set -e
#set -x
. /usr/share/debconf/confmodule
. /usr/lib/oar/setup/server.sh
PACKAGE=oar-server
errorinit() {
	cat <<EOF
oar-server has been unable to start, probably because a configuration or a
database setup is required. Please fix it and manually restart the oar-server
daemon using ´service start oar-server´.
EOF
}
case "$1" in
    configure)
        server_setup
        ;;
    abort-upgrade|abort-remove|abort-deconfigure)
        ;;
    
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
        ;;
esac
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
	if [ -x "/etc/init.d/oar-server" ]; then
		update-rc.d oar-server defaults >/dev/null
		invoke-rc.d oar-server start || errorinit
	fi
fi
# End automatically added section
exit 0
 |