forked from Lainports/freebsd-ports
15 lines
363 B
Bash
15 lines
363 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
if [ "$2" == "POST-DEINSTALL" ]; then
|
|
if [ -d %%WWWDIR%% ]; then
|
|
echo ""
|
|
echo "-------------------------------------------------------"
|
|
echo "Run the following command, if you plan to permanently"
|
|
echo "remove froxlor:"
|
|
echo ""
|
|
echo " rm -rf %%WWWDIR%%"
|
|
echo "-------------------------------------------------------"
|
|
echo ""
|
|
fi
|
|
fi
|