93 lines
2.3 KiB
Plaintext
93 lines
2.3 KiB
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2017 Gentoo Foundation
|
|
# Copyright 2018 Hyperbola Project
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
extra_commands="configtest"
|
|
extra_started_commands="upgrade reload"
|
|
|
|
description="Robust, small and high performance http and reverse proxy server"
|
|
description_configtest="Run freenginx' internal config check."
|
|
description_upgrade="Upgrade the freenginx binary without losing connections."
|
|
description_reload="Reload the freenginx configuration without losing connections."
|
|
|
|
FREENGINX_CONFIGFILE=${FREENGINX_CONFIGFILE:-/etc/freenginx/freenginx.conf}
|
|
|
|
command="/usr/sbin/freenginx"
|
|
command_args="-c \"${FREENGINX_CONFIGFILE}\""
|
|
start_stop_daemon_args=${FREENGINX_SSDARGS:-"--wait 1000"}
|
|
pidfile=${FREENGINX_PIDFILE:-/run/freenginx.pid}
|
|
user=${FREENGINX_USER:-freenginx}
|
|
group=${FREENGINX_GROUP:-freenginx}
|
|
retry=${FREENGINX_TERMTIMEOUT:-"TERM/60/KILL/5"}
|
|
|
|
depend() {
|
|
use net dns logger netmount
|
|
}
|
|
|
|
start_pre() {
|
|
if [ "${RC_CMD}" != "restart" ]; then
|
|
configtest || return 1
|
|
fi
|
|
}
|
|
|
|
stop_pre() {
|
|
if [ "${RC_CMD}" = "restart" ]; then
|
|
configtest || return 1
|
|
fi
|
|
}
|
|
|
|
stop_post() {
|
|
rm -f ${pidfile}
|
|
}
|
|
|
|
reload() {
|
|
configtest || return 1
|
|
ebegin "Refreshing freenginx' configuration"
|
|
start-stop-daemon --signal SIGHUP --pidfile "${pidfile}"
|
|
eend $? "Failed to reload freenginx"
|
|
}
|
|
|
|
upgrade() {
|
|
configtest || return 1
|
|
ebegin "Upgrading freenginx"
|
|
|
|
einfo "Sending USR2 to old binary"
|
|
start-stop-daemon --signal SIGUSR2 --pidfile "${pidfile}"
|
|
|
|
einfo "Sleeping 3 seconds before pid-files checking"
|
|
sleep 3
|
|
|
|
if [ ! -f "${pidfile}.oldbin" ]; then
|
|
eerror "File with old pid not found"
|
|
return 1
|
|
fi
|
|
|
|
if [ ! -f "${pidfile}" ]; then
|
|
eerror "New binary failed to start"
|
|
return 1
|
|
fi
|
|
|
|
einfo "Sleeping 3 seconds before WINCH"
|
|
sleep 3
|
|
# Cannot send "WINCH" using start-stop-daemon yet, https://bugs.gentoo.org/604986
|
|
kill -WINCH $(cat "${pidfile}.oldbin")
|
|
|
|
einfo "Sending QUIT to old binary"
|
|
start-stop-daemon --signal SIGQUIT --pidfile "${pidfile}.oldbin"
|
|
|
|
einfo "Upgrade completed"
|
|
eend $? "Upgrade failed"
|
|
}
|
|
|
|
configtest() {
|
|
ebegin "Checking freenginx' configuration"
|
|
${command} -c "${FREENGINX_CONFIGFILE}" -t -q
|
|
|
|
if [ $? -ne 0 ]; then
|
|
${command} -c "${FREENGINX_CONFIGFILE}" -t
|
|
fi
|
|
|
|
eend $? "failed, please correct errors above"
|
|
}
|