~ubuntu-branches/ubuntu/raring/bind9/raring

« back to all changes in this revision

Viewing changes to debian/bind9.postrm

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, Christoph Egger, LaMont Jones
  • Date: 2012-04-13 12:09:24 UTC
  • Revision ID: package-import@ubuntu.com-20120413120924-rbxv3wr3po771ptj
Tags: 1:9.8.1.dfsg.P1-4
[Christoph Egger]

* define _GNU_SOURCE on kfreebsd et al.  Closes: #658201

[LaMont Jones]

* chmod typo in postinst.  LP: #980798
* Correctly order debhelper bits in postrm.  Closes: #661040

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
 
 
3
#DEBHELPER#
 
4
 
3
5
if [ "$1" = "purge" ]; then
4
6
        rm -f /etc/bind/rndc.key /etc/default/bind9
5
7
        rmdir /etc/bind >/dev/null 2>&1 || true
11
13
            deluser  --quiet bind > /dev/null || true
12
14
        fi
13
15
fi
14
 
 
15
 
#DEBHELPER#