#!/bin/sh # postinst script for hcoop-apache2-config # # 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 # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# # We want to run last (need the diversions to be installed first) case "$1" in configure) # It would be nice to use -d or something, but for whatever # reason when adding and removing links in rcS insserv doesn't # actually do anything unless you force remove the script # first! insserv -rf openafs-client insserv openafs-client ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac exit 0