VCL_LDPRELOAD: mixed libc/vcl epoll fd's

Change-Id: Ibc82781ddef5ea0517220b9054db3d53ec348c6c
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
This commit is contained in:
Dave Wallace
2017-11-02 22:04:42 -04:00
committed by Florin Coras
parent 6c36f53ff0
commit e695cb4dbd
6 changed files with 179 additions and 179 deletions

View File

@ -248,12 +248,6 @@ done
VCL_LDPRELOAD_LIB_DIR="${VCL_LDPRELOAD_LIB_DIR:-$lib64_dir}"
if [ -n "$multi_host" ] ; then
VCL_SESSION_SCOPE_GLOBAL=true
else
VCL_SESSION_SCOPE_LOCAL=true
fi
if [ -z "$WS_ROOT" ] ; then
echo "ERROR: WS_ROOT environment variable not set!" >&2
echo " Please set WS_ROOT to VPP workspace root directory." >&2
@ -520,10 +514,10 @@ write_script_header() {
echo "export VCL_APP_NAMESPACE_ID=\"$namespace_id\"" >> $1
echo "export VCL_APP_NAMESPACE_SECRET=\"$namespace_secret\"" >> $1
fi
if [ -n "$VCL_APP_SCOPE_LOCAL" ] ; then
if [ -n "$VCL_APP_SCOPE_LOCAL" ] || [ -z "$multi_host" ] ; then
echo "export VCL_APP_SCOPE_LOCAL=true" >> $1
fi
if [ -n "$VCL_APP_SCOPE_GLOBAL" ] ; then
if [ -n "$VCL_APP_SCOPE_GLOBAL" ] || [ -n "$multi_host" ] ; then
echo "export VCL_APP_SCOPE_GLOBAL=true" >> $1
fi
if [ -n "$VCL_APP_PROXY_TRANSPORT_TCP" ] ; then