b18f2651ac
The committed port is an improved and updated version of the submitted one, thanks to Stefan (Racke) Hornburg <racke@linuxia.de> for his helpful hints about some configure/build internals of interchange. I decided to take over maintainership of this port for a while until someone more responsive than the port submitter (no answer so far from him since I decided to take over the PR) is interested in it or until I think the testing period of this port is over. PR: 41390 Submitted by: Seth Kingsley <sethk@meowfishies.com> Thanks to: Stefan (Racke) Hornburg <racke@linuxia.de>
17 lines
279 B
Bash
17 lines
279 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
USER=interch
|
|
|
|
# Don't delete it, there may be ${USER} owned files around.
|
|
pw usershow "${USER}" >/dev/null 2>&1 \
|
|
&& echo -e "*\n* To delete the user '${USER}' use 'pw userdel ${USER}'.\n*"
|
|
|
|
exit 0
|