~ubuntu-branches/ubuntu/maverick/pdns/maverick-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Debian PowerDNS Maintainers
  • Date: 2006-05-06 10:40:44 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060506104044-v9hczzfl7dcri6qt
Tags: 2.9.20-3
Disable the recursor, this is in a separate package now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
if [ -x "/etc/init.d/pdns" ]; then
32
32
  if [ -x /usr/sbin/invoke-rc.d ] ; then
33
 
    invoke-rc.d pdns stop || exit 0
 
33
    invoke-rc.d pdns stop || exit $?
34
34
  else
35
 
    /etc/init.d/pdns stop || exit 0
 
35
    /etc/init.d/pdns stop || exit $?
36
36
  fi
37
37
fi
38
38