summaryrefslogtreecommitdiffstats
path: root/debian/nagios-nrpe-plugin.postrm
blob: a77d21aeb2e7368a10863e4746c3828eef8ddea9 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

if [ "$1" = purge ]; then
	test -d /var/lib/nagios && rmdir /var/lib/nagios || true #ignore non-failure errors 
fi

#DEBHELPER#