#! /bin/sh set -e if [ "$1" = remove ]; then if command -v suidunregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then if [ -x /usr/lib/pt_chown ]; then suidunregister -s libc6 /usr/lib/pt_chown elif [ -x /usr/libexec/pt_chown ]; then suidunregister -s libc6 /usr/libexec/pt_chown fi fi fi if [ "$1" = deconfigure ]; then :; # blah, do something useful with ldso fi #if [ "$1" = purge ]; then # update-rc.d mountkernfs remove > /dev/null #fi # Automatically added by dh_installdebconf if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule db_purge fi # End automatically added section # Automatically added by dh_makeshlibs if [ "$1" = "remove" ]; then ldconfig fi # End automatically added section exit 0