~ubuntu-branches/ubuntu/trusty/pdns/trusty-backports

« back to all changes in this revision

Viewing changes to debian/pdns-backend-sqlite.prerm

  • Committer: Package Import Robot
  • Author(s): Matthijs Möhlmann
  • Date: 2011-11-19 11:58:10 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20111119115810-5u926cmriehkt5j7
Tags: 3.0-1
* New upstream version (Closes: #624330, #626909, #617476, #498918, #500572)
  (Closes: #645539, #623036, #521791, #583161, #590285, #499396)
* Update Standards-Version to 3.9.2
* Add lua backend.
* Use new style dh instead of individual dh_* commands.
* Add Homepage to debian/control (Closes: #634947)
* Add pdnssec and dnsreplay utility.
* Use dbconfig-common to populate / upgrade databases.
* Update patch addconfigdir, do not parse ucf-dist files.
* Update manpage pdns_control and include a list of options (Closes: #621724)
* Add manpage for pdnssec.
* Add prerm scripts to the backends, stop the pdns server.
* Add patch from upstream to properly parse priority. (Closes: #533023)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# Pre removal
 
4
 
 
5
set -e
 
6
 
 
7
# Execute dbconfig-common
 
8
. /usr/share/debconf/confmodule
 
9
. /usr/share/dbconfig-common/dpkg/prerm.sqlite
 
10
dbc_go pdns-backend-sqlite $@
 
11
 
 
12
# Stop pdns.
 
13
if [ -x "/etc/init.d/pdns" ]; then
 
14
        invoke-rc.d pdns stop || exit $?
 
15
fi
 
16
 
 
17
# dh_installdeb will replace this with shell code automatically
 
18
# generated by other debhelper scripts.
 
19
 
 
20
#DEBHELPER#
 
21
 
 
22
exit 0
 
23