#!/bin/sh # postinst script for openmpi # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) # so conserver will start mkdir -p /var/log/consoles # remove any management node file if [ -f /etc/xCATMN ]; then rm /etc/xCATMN fi apachedaemon='apache2' update-rc.d $apachedaemon enable if [ -f "/proc/cmdline" ]; then # prevent running it during install into chroot image XCATROOT=/opt/xcat /etc/init.d/xcatd start /etc/init.d/$apachedaemon reload fi echo "xCATsn is now installed" ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0