#! /bin/sh # prerm script for bind9-cn # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `upgrade' # * `failed-upgrade' # * `remove' `in-favour' # * `deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in remove|upgrade|deconfigure) # continue below ;; *) exit 0 ;; esac # remove example templates rm -f /usr/share/doc/bind9-cn/examples/named.conf.local \ /usr/share/doc/bind9-cn/examples/named.conf.options \ /usr/share/doc/bind9-cn/examples/hosts.db \ /usr/share/doc/bind9-cn/examples/hosts.rev \ /usr/share/doc/bind9-cn/examples/hosts \ /usr/share/doc/bind9-cn/examples/resolv.conf # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0