summaryrefslogtreecommitdiff
path: root/www/zope211
diff options
context:
space:
mode:
authorAlan Eldridge <alane@FreeBSD.org>2002-06-20 00:25:44 +0000
committerAlan Eldridge <alane@FreeBSD.org>2002-06-20 00:25:44 +0000
commit937d3600425e26cd76a52d55dc12ac6ca5197dc0 (patch)
tree1cd699d6f00a9aa5b15fe01335279b4d6fa09c11 /www/zope211
parentUpdate to 0.9.2 (diff)
1. Redirect stderr to /dev/null as well as stdout in rc.d/zope.sh, so that
boot time startup does not fail. 2. Bump PORTREVSION (not in PR). PR: ports/37878 Submitted by: alane Reviewed by: will Approved by: will
Notes
Notes: svn path=/head/; revision=61603
Diffstat (limited to 'www/zope211')
-rw-r--r--www/zope211/Makefile2
-rw-r--r--www/zope211/files/zope.sh.in3
2 files changed, 3 insertions, 2 deletions
diff --git a/www/zope211/Makefile b/www/zope211/Makefile
index 6fe89377a37e..32ca0ae0537c 100644
--- a/www/zope211/Makefile
+++ b/www/zope211/Makefile
@@ -7,7 +7,7 @@
PORTNAME= zope
PORTVERSION= 2.5.1
-PORTREVISION= 0
+PORTREVISION= 1
CATEGORIES= www python zope
MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/
DISTNAME= Zope-${PORTVERSION}-src
diff --git a/www/zope211/files/zope.sh.in b/www/zope211/files/zope.sh.in
index 6e461541a625..616a53f07eec 100644
--- a/www/zope211/files/zope.sh.in
+++ b/www/zope211/files/zope.sh.in
@@ -8,7 +8,8 @@ start)
-f %%ZOPE_FTP_PORT%% \
-m %%ZOPE_MONITOR_PORT%% \
-u %%ZOPE_USER%% \
- -p %%CGIBINDIR%%/Zope.cgi >> %%ZOPEBASEDIR%%/var/zope-output &
+ -p %%CGIBINDIR%%/Zope.cgi \
+ >> %%ZOPEBASEDIR%%/var/zope-output 2>&1 &
echo -n " Zope"
;;
stop)