aboutsummaryrefslogtreecommitdiffstats
path: root/www/spawn-fcgi
diff options
context:
space:
mode:
authorwxs <wxs@FreeBSD.org>2009-04-22 22:35:56 +0800
committerwxs <wxs@FreeBSD.org>2009-04-22 22:35:56 +0800
commit6a6cacf5cc7c12d53489fce69182a93fc3c4450f (patch)
treef55cc7973b423d6c3add0b32ab36d98049a49986 /www/spawn-fcgi
parentd695bd35fc952c7ac8dd8390608feeed3512ae24 (diff)
downloadfreebsd-ports-gnome-6a6cacf5cc7c12d53489fce69182a93fc3c4450f.tar.gz
freebsd-ports-gnome-6a6cacf5cc7c12d53489fce69182a93fc3c4450f.tar.zst
freebsd-ports-gnome-6a6cacf5cc7c12d53489fce69182a93fc3c4450f.zip
- Fix RC script from last update.
- Remove dead mirror. PR: ports/133905 Submitted by: "Dmitry V. Reshetnikov" <genserg@hotmail.com> (maintainer)
Diffstat (limited to 'www/spawn-fcgi')
-rw-r--r--www/spawn-fcgi/Makefile4
-rw-r--r--www/spawn-fcgi/files/spawn-fcgi.sh.in5
2 files changed, 4 insertions, 5 deletions
diff --git a/www/spawn-fcgi/Makefile b/www/spawn-fcgi/Makefile
index 747585aba146..4e9e3bdf3010 100644
--- a/www/spawn-fcgi/Makefile
+++ b/www/spawn-fcgi/Makefile
@@ -7,9 +7,9 @@
PORTNAME= spawn-fcgi
PORTVERSION= 1.6.2
+PORTREVISION= 1
CATEGORIES= www
-MASTER_SITES= http://www.lighttpd.net/download/ \
- http://mirrors.cat.pdx.edu/lighttpd/
+MASTER_SITES= http://www.lighttpd.net/download/
MAINTAINER= genserg@hotmail.com
COMMENT= spawn-fcgi is used to spawn fastcgi applications
diff --git a/www/spawn-fcgi/files/spawn-fcgi.sh.in b/www/spawn-fcgi/files/spawn-fcgi.sh.in
index e94a31c4fa8b..01554006c3a9 100644
--- a/www/spawn-fcgi/files/spawn-fcgi.sh.in
+++ b/www/spawn-fcgi/files/spawn-fcgi.sh.in
@@ -35,7 +35,6 @@ _allowed_env="PATH USER PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS FCGI_WEB_SERVER_
_allowed_env="${_allowed_env} ${spawn_fcgi_allowed_env}"
start_precmd="${name}_start_precmd"
-stop_cmd="${name}_stop_cmd"
stop_postcmd="${name}_stop_postcmd"
spawn_fcgi_start_precmd()
@@ -43,9 +42,9 @@ spawn_fcgi_start_precmd()
touch ${pidfile}
chown ${spawn_fcgi_user}:${spawn_fcgi_group} ${pidfile}
export PATH=${spawn_fcgi_path_env}
- export PHP_FCGI_CHILDREN=${spawn_fcgi_children}
- export PHP_FCGI_MAX_REQUESTS=${spawn_fastcgi_max_requests}
export USER=${spawn_fcgi_user}
+ export PHP_FCGI_CHILDREN=${spawn_fcgi_children}
+ export PHP_FCGI_MAX_REQUESTS=${spawn_fcgi_max_requests}
export FCGI_WEB_SERVER_ADDRS=${spawn_fcgi_web_server_addrs}
E=
for i in ${_allowed_env}; do