mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
84c743c902
Switch to USERS and GROUPS
14 lines
195 B
Bash
14 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
|