diff options
author | alane <alane@FreeBSD.org> | 2002-06-20 08:25:44 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-06-20 08:25:44 +0800 |
commit | 88b0f2f948f953d64b5e56b8809678907fdfc594 (patch) | |
tree | 120c97f0f2f2de2a334c687bf2407cf8a49e323e /www/zope | |
parent | 9e2a5ccbdcc440a3de725e64151b3b5f1c0005e4 (diff) | |
download | freebsd-ports-gnome-88b0f2f948f953d64b5e56b8809678907fdfc594.tar.gz freebsd-ports-gnome-88b0f2f948f953d64b5e56b8809678907fdfc594.tar.zst freebsd-ports-gnome-88b0f2f948f953d64b5e56b8809678907fdfc594.zip |
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
Diffstat (limited to 'www/zope')
-rw-r--r-- | www/zope/Makefile | 2 | ||||
-rw-r--r-- | www/zope/files/zope.sh.in | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/www/zope/Makefile b/www/zope/Makefile index 6fe89377a37e..32ca0ae0537c 100644 --- a/www/zope/Makefile +++ b/www/zope/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/zope/files/zope.sh.in b/www/zope/files/zope.sh.in index 6e461541a625..616a53f07eec 100644 --- a/www/zope/files/zope.sh.in +++ b/www/zope/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) |