bbfb03d5ed
This is a bundle of several ports covering many typical requirements for building an Apple WebObjects deployment environment. Each port is or has a dependancy with some other port in the bundle, and have therefore been lodged collectively. databases/frontbase: FrontBase is a high performance, scalable, SQL 92 compliant relational database server created in the internet age for universal deployment. WWW: http://www.frontbase.com/ PR: ports/117299 Submitted by: Quinton Dolan <q@onthenet.com.au>
15 lines
228 B
Bash
15 lines
228 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
USER=frontbase
|
|
|
|
if pw usershow "${USER}" 2>/dev/null 1>&2; then
|
|
echo "To delete the FrontBase user permanently, use 'pw userdel ${USER}'"
|
|
fi
|
|
|
|
exit 0
|