| Current Path : /proc/8644/root/proc/self/root/proc/self/root/proc/8644/root/var/lib/dpkg/info/ | 
| Current File : //proc/8644/root/proc/self/root/proc/self/root/proc/8644/root/var/lib/dpkg/info/procps.prerm | 
#!/bin/sh
set -e
case "$1" in
  remove|deconfigure)
	update-alternatives --remove w /usr/bin/w.procps
    ;;
  upgrade|failed-upgrade)
    ;;
esac
# Automatically added by dh_installinit
if [ -x "/etc/init.d/procps" ]; then
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d procps stop || exit $?
	else
		/etc/init.d/procps stop || exit $?
	fi
fi
# End automatically added section
exit 0