blob: 809cdc831158740bdfa1c1202e68d2fda2f8b9f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# $FreeBSD$
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
|