nagios-nrpe/debian/nagios-nrpe-plugin.postrm
2016-06-24 12:21:25 +02:00

10 lines
147 B
Bash

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