--- /dev/null
+pdns-backend-bind: non-dev-pkg-with-shlib-symlink usr/lib/libbindbackend.so.0.0.0 usr/lib/libbindbackend.so
+pdns-backend-bind: no-shlibs-control-file usr/lib/libbindbackend.so.0.0.0
+pdns-backend-bind: no-copyright-file
+pdns-backend-bind: postrm-unsafe-ldconfig
--- /dev/null
+#!/bin/sh
+
+set -e
+
+
+if [ "$1" = "configure" -o "$1" = "abort-upgrade" ] ; then
+ ldconfig
+fi
--- /dev/null
+#!/bin/sh
+
+set -e
+
+if [ "$1" = "remove" ] ; then
+ ldconfig
+fi
+
--- /dev/null
+pdns-backend-mysql: non-dev-pkg-with-shlib-symlink usr/lib/libmysqlbackend.so.0.0.0 usr/lib/libmysqlbackend.so
+pdns-backend-mysql: no-shlibs-control-file usr/lib/libmysqlbackend.so.0.0.0
+pdns-backend-mysql: no-copyright-file
+pdns-backend-mysql: postrm-unsafe-ldconfig
--- /dev/null
+#!/bin/sh
+
+set -e
+
+update_docbase() {
+ if command -v install-docs >/dev/null 2>&1 ; then
+ install-docs -i /usr/share/doc-base/pdns
+ fi
+}
+
+
+if [ "$1" = "configure" -o "$1" = "abort-upgrade" ] ; then
+ update_docbase
+fi
+
--- /dev/null
+#!/bin/sh
+
+set -e
+
+update_docbase() {
+ if command -v install-docs >/dev/null 2>&1 ; then
+ install-docs -r pdns
+ fi
+}
+
+if [ "$1" = "remove" ] ; then
+ update_docbase
+fi
--- /dev/null
+/etc/pdns.conf
+/etc/init.d/pdns
--- /dev/null
+#!/bin/sh
+
+set -e
+
+update_init() {
+ if [ -z "$2" ] ; then
+ update-rc.d pdns defaults 15 85 > /dev/null
+ fi
+}
+
+
+update_pdns() {
+ if [ -n "$2" ] ; then
+ /etc/init.d/pdns start
+ fi
+}
+
+if [ "$1" = "configure" -o "$1" = "abort-upgrade" ] ; then
+ update_init "$@"
+ restart_pdns "$@"
+fi
--- /dev/null
+#!/bin/sh
+
+set -e
+
+update_init() {
+ update-rc.d pdns remove > /dev/null
+}
+
+
+if [ "$1" = "purge" ] ; then
+ update_init
+fi
+
--- /dev/null
+#!/bin/sh
+
+set -e
+
+if [ "$1" = "remove" ] ; then
+ /etc/init.d/pdns stop
+fi