Skip to content

Commit

Permalink
4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mchyzer committed Nov 20, 2023
1 parent c822fb1 commit 9b53a1c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ LABEL author="tier-packaging@internet2.edu <tier-packaging@internet2.edu>" \

ARG GROUPER_CONTAINER_VERSION

ENV GROUPER_VERSION=4.8.0 \
GROUPER_CONTAINER_VERSION=4.8.0 \
ENV GROUPER_VERSION=4.9.0 \
GROUPER_CONTAINER_VERSION=4.9.0 \
JAVA_HOME=/usr/lib/jvm/java-17-amazon-corretto \
PATH=$PATH:$JAVA_HOME/bin \
GROUPER_HOME=/opt/grouper/grouperWebapp/WEB-INF
Expand Down
8 changes: 8 additions & 0 deletions container_files/usr-local-bin/librarySetupFilesApache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,14 @@ setupFilesApache_remoteip() {
echo "grouperContainer; INFO: (librarySetupFilesApache.sh-setupFilesApache_remoteip) echo \"RemoteIPInternalProxy $GROUPER_APACHE_REMOTE_IP_INTERNAL_PROXY\" >> /etc/httpd/conf.d/grouper-www.conf , result: $?"
if [ $returnCode != 0 ]; then exit $returnCode; fi
fi
if [ "$GROUPER_RUN_APACHE" = "true" ] && [ ! -z "$GROUPER_APACHE_REMOTE_IP_HEADER" ] && [ "$GROUPER_APACHE_REMOTE_IP_HEADER" != "" ] && [ -f /etc/httpd/conf.d/09_i2inc_logging.conf ]
then
echo "grouperContainer; INFO: (librarySetupFilesApache.sh-setupFilesApache_remoteip) Changing logging config for client address"
sed -i "s|%h|%a|g" /etc/httpd/conf.d/09_i2inc_logging.conf
returnCode=$?
echo "grouperContainer; INFO: (librarySetupFilesApache.sh-setupFilesApache_remoteip) sed -i \"s|%h|%a|g\" /etc/httpd/conf.d/09_i2inc_logging.conf , result: $?"
if [ $returnCode != 0 ]; then exit $returnCode; fi
fi

}

Expand Down

0 comments on commit 9b53a1c

Please sign in to comment.