X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fprerm;fp=debian%2Fprerm;h=acb1c7d54a3691692e324c94f9eea112aac4be13;hb=f0ad66659c79f125d6322f9061e0ff75e8dde583;hp=0000000000000000000000000000000000000000;hpb=e70366777f318e4219505a00155bb1318fe6c05b;p=bind9-cn.git diff --git a/debian/prerm b/debian/prerm new file mode 100755 index 0000000..acb1c7d --- /dev/null +++ b/debian/prerm @@ -0,0 +1,43 @@ +#! /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.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