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

« back to all changes in this revision

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

  • 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:
88
88
 
89
89
if [ -x "/etc/init.d/pdns" ]; then
90
90
  if [ -x /usr/sbin/invoke-rc.d ]; then
91
 
    invoke-rc.d pdns restart || exit 0
 
91
    invoke-rc.d pdns restart || exit $?
92
92
  else
93
 
    /etc/init.d/pdns restart || exit 0
 
93
    /etc/init.d/pdns restart || exit $?
94
94
  fi
95
95
fi
96
96