forked from Lainports/freebsd-ports
- fix postgresql properties file installation - add postgresql 9.x support PR: ports/159094 Submitted by: Jason Helfman <jhelfman _at_ experts-exchange.com> (maintainer)
28 lines
708 B
Bash
28 lines
708 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
BATCH=${BATCH:=no}
|
|
|
|
if [ "$2" = "PRE-INSTALL" ]; then
|
|
cat << _EOF
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
If UPGRADING from 4.0.0 to 4.1.0:
|
|
(taken from release notes of 4.1.0 from vendor)
|
|
|
|
To upgrade from 4.0.0 to 4.1.0, refer to the recommended
|
|
procedure described in the Installation Guide Chapter 8
|
|
"Upgrade from 4.0.0 to 4.1.0"
|
|
|
|
WWW: http://jasperforge.org/projects/jasperserver
|
|
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
_EOF
|
|
if [ -z "${PACKAGE_BUILDING}" -a "${BATCH}" = "no" ]; then
|
|
read -p "Hit ^c now to stop, any key to continue: " -t 20 a || true
|
|
echo
|
|
echo
|
|
fi
|
|
fi
|