mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-servers/spawn-fcgi: Several fixes to init.d script
- Detect crashes (#567320 by Cédric Krier) - Use proper variable names (#657362 by Jernej Simoncic) Closes: https://bugs.gentoo.org/567320 Closes: https://bugs.gentoo.org/657362 Signed-off-by: Pacho Ramos <pacho@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
This commit is contained in:
116
www-servers/spawn-fcgi/files/spawn-fcgi.initd-r3
Normal file
116
www-servers/spawn-fcgi/files/spawn-fcgi.initd-r3
Normal file
@@ -0,0 +1,116 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
PROGNAME=${SVCNAME#*.}
|
||||
SPAWNFCGI=/usr/bin/spawn-fcgi
|
||||
PIDPATH=/run/spawn-fcgi
|
||||
PIDFILE=${PIDPATH}/${PROGNAME}
|
||||
|
||||
depend() {
|
||||
need net
|
||||
}
|
||||
|
||||
start() {
|
||||
local X E OPTIONS i RETVAL FCGI_PROGRAM_EXEC
|
||||
FCGI_PROGRAM_EXEC=$(echo ${FCGI_PROGRAM} | awk "{print \$1}")
|
||||
|
||||
if [ "${SVCNAME}" = "spawn-fcgi" ]; then
|
||||
eerror "You are not supposed to run this script directly. Create a symlink"
|
||||
eerror "for the FastCGI application you want to run as well as a copy of the"
|
||||
eerror "configuration file and modify it appropriately like so..."
|
||||
eerror
|
||||
eerror " ln -s spawn-fcgi /etc/init.d/spawn-fcgi.trac"
|
||||
eerror " cp /etc/conf.d/spawn-fcgi /etc/conf.d/spawn-fcgi.trac"
|
||||
eerror " `basename "${EDITOR}"` /etc/conf.d/spawn-fcgi.trac"
|
||||
eerror
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ ! -z "${FCGI_SOCKET}" ] && [ ! -z "${FCGI_PORT}" ]; then
|
||||
eerror "Only one of the two may be defined:"
|
||||
eerror " FCGI_SOCKET=${FCGI_SOCKET}"
|
||||
eerror " FCGI_PORT=${FCGI_PORT}"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ -z "${FCGI_PROGRAM}" ]; then
|
||||
eerror "You need to specify which \$FCGI_PROGRAM"
|
||||
eerror "you want to start."
|
||||
eerror "Please adjust /etc/conf.d/spawn-fcgi.${PROGNAME}"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ ! -x "${FCGI_PROGRAM_EXEC}" ]; then
|
||||
eerror "The file specified as \$FCGI_PROGRAM"
|
||||
eerror "does not exist or is not executable."
|
||||
eerror "Please adjust /etc/conf.d/spawn-fcgi.${PROGNAME}"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ -z "${FCGI_ADDRESS}" ]; then
|
||||
FCGI_ADDRESS=127.0.0.1
|
||||
fi
|
||||
|
||||
if [ -z "${FCGI_CHILDREN}" ]; then
|
||||
FCGI_CHILDREN=1
|
||||
fi
|
||||
|
||||
if [ -n "${FCGI_CHROOT}" ]; then
|
||||
OPTIONS="${OPTIONS} -c ${FCGI_CHROOT}"
|
||||
fi
|
||||
|
||||
if [ -n "${FCGI_CHDIR}" ]; then
|
||||
OPTIONS="${OPTIONS} -d ${FCGI_CHDIR}"
|
||||
fi
|
||||
|
||||
if [ -n "${FCGI_USER}" ] && [ "${FCGI_USER}" != "root" ]; then
|
||||
OPTIONS="${OPTIONS} -u ${FCGI_USER}"
|
||||
fi
|
||||
|
||||
if [ -n "${FCGI_GROUP}" ] && [ "${FCGI_GROUP}" != "root" ]; then
|
||||
OPTIONS="${OPTIONS} -g ${FCGI_GROUP}"
|
||||
fi
|
||||
|
||||
if [ -n "${FCGI_EXTRA_OPTIONS}" ]; then
|
||||
OPTIONS="${OPTIONS} ${FCGI_EXTRA_OPTIONS}"
|
||||
fi
|
||||
|
||||
unset E
|
||||
for i in ${ALLOWED_ENV}; do
|
||||
local j
|
||||
eval j=$(echo \$"$i")
|
||||
[ -n "${j}" ] && E="${E} --env ${i}=${j}"
|
||||
done
|
||||
|
||||
ebegin "Starting FastCGI application ${PROGNAME}"
|
||||
checkpath -q -d -m 700 /run/spawn-fcgi
|
||||
X=0
|
||||
while [ $X -lt ${FCGI_CHILDREN} ]; do
|
||||
X=$(($X+1))
|
||||
local P SOCKET_OPTION INET_OPTION
|
||||
P=${PIDFILE}-${X}.pid
|
||||
[ -n "${FCGI_SOCKET}" ] && SOCKET_OPTION="-s ${FCGI_SOCKET}-${X}"
|
||||
[ -n "${FCGI_PORT}" ] && INET_OPTION="-a ${FCGI_ADDRESS} -p $((${FCGI_PORT} + ${X} - 1))"
|
||||
|
||||
start-stop-daemon --start --pidfile ${P} --exec ${SPAWNFCGI} \
|
||||
${E} -- ${SOCKET_OPTION} ${INET_OPTION} \
|
||||
-P ${P} ${OPTIONS} -- ${FCGI_PROGRAM}
|
||||
RETVAL=$?
|
||||
|
||||
# Stop on error. Don't want to spawn a mess!
|
||||
[ "${RETVAL}" != "0" ] && break
|
||||
done
|
||||
eend ${RETVAL}
|
||||
}
|
||||
|
||||
stop() {
|
||||
local X RETVAL=0
|
||||
|
||||
ebegin "Stopping FastCGI application ${PROGNAME}"
|
||||
for X in ${PIDFILE}-[0-9]*.pid ; do
|
||||
start-stop-daemon --stop --pidfile ${X} || \
|
||||
{ RETVAL=$? && break ; }
|
||||
done
|
||||
eend ${RETVAL}
|
||||
}
|
||||
33
www-servers/spawn-fcgi/spawn-fcgi-1.6.4-r1.ebuild
Normal file
33
www-servers/spawn-fcgi/spawn-fcgi-1.6.4-r1.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="A FCGI spawner for lighttpd and cherokee and other webservers"
|
||||
HOMEPAGE="http://redmine.lighttpd.net/projects/spawn-fcgi"
|
||||
SRC_URI="http://www.lighttpd.net/download/${P}.tar.xz"
|
||||
|
||||
LICENSE="BSD GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
|
||||
IUSE="ipv6"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
!<=www-servers/lighttpd-1.4.20
|
||||
!<=www-servers/cherokee-0.98.1
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable ipv6)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
newconfd "${FILESDIR}"/spawn-fcgi.confd spawn-fcgi
|
||||
newinitd "${FILESDIR}"/spawn-fcgi.initd-r3 spawn-fcgi
|
||||
|
||||
docinto examples
|
||||
dodoc doc/run-generic doc/run-php doc/run-rails
|
||||
}
|
||||
Reference in New Issue
Block a user