summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2009-04-07 08:39:00 +0000
committerThilo Bangert <bangert@gentoo.org>2009-04-07 08:39:00 +0000
commitafbde938bbd893200310e46da3fe87696c70835e (patch)
tree1e07d7a20477df0efbe311f746be8249ae5d1c4e /www-servers
parentVersion bump (diff)
downloadgentoo-2-afbde938bbd893200310e46da3fe87696c70835e.tar.gz
gentoo-2-afbde938bbd893200310e46da3fe87696c70835e.tar.bz2
gentoo-2-afbde938bbd893200310e46da3fe87696c70835e.zip
make sure pidpath is available
(Portage version: 2.2_rc26/cvs/Linux i686)
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/spawn-fcgi/ChangeLog5
-rw-r--r--www-servers/spawn-fcgi/files/spawn-fcgi.initd9
2 files changed, 10 insertions, 4 deletions
diff --git a/www-servers/spawn-fcgi/ChangeLog b/www-servers/spawn-fcgi/ChangeLog
index 3088be05c2dd..eef0c419b2c6 100644
--- a/www-servers/spawn-fcgi/ChangeLog
+++ b/www-servers/spawn-fcgi/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for www-servers/spawn-fcgi
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.3 2009/04/04 10:40:23 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.4 2009/04/07 08:39:00 bangert Exp $
+
+ 07 Apr 2009; Thilo Bangert <bangert@gentoo.org> files/spawn-fcgi.initd:
+ make sure pidpath is available
04 Apr 2009; Thilo Bangert <bangert@gentoo.org> files/spawn-fcgi.initd:
posixify init script - bug #260162
diff --git a/www-servers/spawn-fcgi/files/spawn-fcgi.initd b/www-servers/spawn-fcgi/files/spawn-fcgi.initd
index 574ae86cd03e..3fc89950e2e5 100644
--- a/www-servers/spawn-fcgi/files/spawn-fcgi.initd
+++ b/www-servers/spawn-fcgi/files/spawn-fcgi.initd
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/files/spawn-fcgi.initd,v 1.3 2009/04/04 10:40:24 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/files/spawn-fcgi.initd,v 1.4 2009/04/07 08:39:00 bangert Exp $
PROGNAME=${SVCNAME#*.}
SPAWNFCGI=/usr/bin/spawn-fcgi
@@ -33,7 +33,7 @@ start() {
fi
local X E OPTIONS SOCKET_OPTION PORT_OPTION RETVAL
-
+
if [ -z "${FCGI_ADDRESS}" ]; then
FCGI_ADDRESS=127.0.0.1
fi
@@ -66,6 +66,9 @@ start() {
[ -n "${j}" ] && E="${E} -e ${i}=${j}"
done
+ #make sure pidfile dir exists
+ install -d "${PIDPATH}" -m 0700 -o root
+
ebegin "Starting FastCGI application ${PROGNAME}"
X=0
while [ $X -lt ${FCGI_CHILDREN} ]; do
@@ -78,7 +81,7 @@ start() {
start-stop-daemon --start --pidfile ${P} ${E} --exec ${SPAWNFCGI} -- \
${SOCKET_OPTION} ${INET_OPTION} -P ${P} ${OPTIONS} -- ${FCGI_PROGRAM}
RETVAL=$?
-
+
# Stop on error. Don't want to spawn a mess!
[ "${RETVAL}" != "0" ] && break
done