~ubuntu-branches/ubuntu/natty/nagios-nrpe/natty

« back to all changes in this revision

Viewing changes to debian/nagios-nrpe-plugin.postrm

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt
  • Date: 2009-07-06 07:08:26 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090706070826-ha86ikh4rl761obb
Tags: 2.12-4
* Build against libwrap0-dev (Closes: #412705)
* Remove 'last modified header' from nrpe config (Closes: #499280)
* Create /etc/nagios/nrpe.d (Closes: #505700, #474333)
* Fix pidfile handling (Closes: #411046)
* Add newer config.{guess,sub} (Closes: #535737)
  - Build-depend on autotools-dev
* Delete /var/lib/nagios if empty after purge (Closes: #527069)
* Bump standards version (add README.source)
* Bump dh_compat version (remove -k from dh_clean)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
if [ "$1" = purge ]; then
 
5
        test -d /var/lib/nagios && rmdir /var/lib/nagios || true #ignore non-failure errors 
 
6
fi
 
7
 
 
8
#DEBHELPER#
 
9