| Current Path : /proc/self/root/proc/self/root/proc/self/root/var/lib/dpkg/info/ | 
| Current File : //proc/self/root/proc/self/root/proc/self/root/var/lib/dpkg/info/ifupdown.postrm | 
#!/bin/sh
set -e
case "$1" in
  purge)
    # Note: We don't remove /etc/network/interfaces
    rm -f /etc/network/run/ifstate
    if [ -L /etc/network/run ] ; then
      rm -f /etc/network/run
    elif [ -d /etc/network/run ] ; then
      rmdir --ignore-fail-on-non-empty /etc/network/run
    fi
    ;;
esac
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
	update-rc.d ifupdown remove >/dev/null || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
	update-rc.d ifupdown-clean remove >/dev/null || exit $?
fi
# End automatically added section