| Current Path : /proc/self/root/proc/8644/root/proc/8644/root/var/lib/dpkg/info/ | 
| Current File : //proc/self/root/proc/8644/root/proc/8644/root/var/lib/dpkg/info/quota.preinst | 
#! /bin/sh
# preinst script for quota
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
#        * <new-preinst> `install'
#        * <new-preinst> `install' <old-version>
#        * <new-preinst> `upgrade' <old-version>
#        * <old-preinst> `abort-upgrade' <new-version>
case "$1" in
    upgrade)
	echo "$2" > /var/run/quota.upgrade
    ;;
    install)
    ;;
    abort-upgrade)
    ;;
    *)
        echo "preinst called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac
exit 0