blob: 12e0a989736720d4a57c5e1fb561e61699514a2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
echo
echo "======================================================================"
echo " If you are permanently removing Free-SA, you should manually delete:"
if [ -d %%ETCDIR%% ]; then
echo " - Free-SA configuration: rm -r %%ETCDIR%%"
fi
if [ -d %%WWWDIR%% ]; then
echo " - Free-SA www directory: rm -r %%WWWDIR%%"
fi
if [ -d %%CACHEDIR%% ]; then
echo " - Free-SA cache directory: rm -r %%CACHEDIR%%"
fi
echo "======================================================================"
echo
|