From 987510a55f10a99b1a68f1e130741e5618533bf9 Mon Sep 17 00:00:00 2001 From: Paul Caskey Date: Mon, 13 May 2019 07:43:48 -0500 Subject: [PATCH] fix shibd startup --- container_files/usr-local-bin/start-httpd.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/container_files/usr-local-bin/start-httpd.sh b/container_files/usr-local-bin/start-httpd.sh index 7d002cd..29827f8 100755 --- a/container_files/usr-local-bin/start-httpd.sh +++ b/container_files/usr-local-bin/start-httpd.sh @@ -21,7 +21,8 @@ case $AUTHENTICATION in echo "*** Starting httpd WITH Shibboleth support" set -e rm -f /etc/httpd/logs/httpd.pid - (/usr/sbin/shibd) & httpd -DFOREGROUND + export LD_LIBRARY_PATH=/opt/shibboleth/lib64:$LD_LIBRARY_PATH + (/usr/sbin/shibd -f) & httpd -DFOREGROUND ;; internal) echo "*** Starting httpd WITHOUT Shibboleth support"