diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-06-20 00:25:44 +0000 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-06-20 00:25:44 +0000 |
commit | 937d3600425e26cd76a52d55dc12ac6ca5197dc0 (patch) | |
tree | 1cd699d6f00a9aa5b15fe01335279b4d6fa09c11 /www/zope210 | |
parent | 8bb51027decf64b705e0b6b911c636e8dfa672cf (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/zope210')
-rw-r--r-- | www/zope210/Makefile | 2 | ||||
-rw-r--r-- | www/zope210/files/zope.sh.in | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/www/zope210/Makefile b/www/zope210/Makefile index 6fe89377a37e..32ca0ae0537c 100644 --- a/www/zope210/Makefile +++ b/www/zope210/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/zope210/files/zope.sh.in b/www/zope210/files/zope.sh.in index 6e461541a625..616a53f07eec 100644 --- a/www/zope210/files/zope.sh.in +++ b/www/zope210/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) |