#! /bin/sh # postrm script for nvidia-current # # see: dh_installdeb(1) # # Copyright (C) 2009-2010 Canonical Ltd # Authors: Alberto Milone set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' overwrit>r> # for details, see /usr/share/doc/packaging-manual/ case "$1" in remove|purge) # This should make sure that /usr/lib/nvidia-current and # /usr/lib32/nvidia-current are removed even if some # links are left. See LP: #540143 rm -Rf /usr/lib/nvidia-current /usr/lib32/nvidia-current ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER#