freebsd-ports/net-mgmt/nagvis/files/pkg-deinstall.in
2021-04-06 16:31:13 +02:00

21 lines
466 B
Bash

#!/bin/sh
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
if [ -d %%WWWDIR%% ]; then
echo
echo "=================================================="
echo
echo " If you want remove nagvis permanently from you"
echo " system, execute following command:"
echo
echo " # rm -rf %%WWWDIR%%"
echo
echo " Do not forget to cleanup your webserver config"
echo "=================================================="
echo
fi
exit 0