13 lines
195 B
Bash
13 lines
195 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
RUNDIR="%%JABBER_RUNDIR%%"
|
|
|
|
echo "===> You should manually delete the following directories:"
|
|
echo "${RUNDIR}"
|
|
|
|
exit 0
|