Files
bsdports/_unused/icinga/files/pkg-deinstall.in
2019-12-26 07:26:06 +00:00

21 lines
298 B
Bash

#!/bin/sh
set -x
ICINGA_SPOOLDIR="%%ICINGA_SPOOLDIR%%"
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
if [ -d ${ICINGA_SPOOLDIR} ]; then
rmdir -p ${ICINGA_SPOOLDIR}
fi
if [ -d ${ICINGA_SPOOLDIR} ]; then
ls -l ${ICINGA_SPOOLDIR}
du -sch ${ICINGA_SPOOLDIR}
fi
;;
esac
exit 0
#EOF