#! /bin/sh # preinst script for sysv-rc set -e # summary of how this script can be called: # * `install' # * `install' # * `upgrade' # * `abort-upgrade' case "$1" in upgrade) # Remove the recorded update-rc.d rm -f /var/lib/update-rc.d/* ;; install) ;; abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 0 ;; esac exit 0