home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -e
-
- case "$1" in
- remove)
- ;;
-
- purge)
- update-rc.d networking remove > /dev/null
- ;;
-
- upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- ;;
-
- *)
- echo "postrm called with unknown argument '$1'" >&2
- exit 1
- ;;
- esac
-
- # 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
-
-