Fix who.ini when is only: "/"

Avoid replace to "//" in 00_update_who.sh entrypoint
This commit is contained in:
mjanez 2023-07-26 12:02:40 +02:00
parent eba3896b44
commit a2fa91798b
1 changed files with 11 additions and 5 deletions

View File

@ -2,8 +2,14 @@
# Update who.ini when exists PROXY_CKAN_LOCATION
echo "Update who.ini"
if [ -n "$PROXY_CKAN_LOCATION" ] && [ "$PROXY_CKAN_LOCATION" != "/" ]; then \
sed -i "s|\${WHO_LOCATION}|$PROXY_CKAN_LOCATION|g" ${APP_DIR}/who.ini; \
else \
sed -i "s|\${WHO_LOCATION}|/|g" ${APP_DIR}/who.ini; \
fi
if [ -n "$PROXY_CKAN_LOCATION" ] && [ "$PROXY_CKAN_LOCATION" != "/" ]; then
sed -i "s|\${WHO_LOCATION}|$PROXY_CKAN_LOCATION|g" "${APP_DIR}/who.ini";
else
# Check if the value is exactly "/"
if [ "$PROXY_CKAN_LOCATION" = "/" ]; then
sed -i "s|\${WHO_LOCATION}||g" "${APP_DIR}/who.ini";
else
# Handle the case when $PROXY_CKAN_LOCATION is empty or not set
sed -i "s|\${WHO_LOCATION}|/|g" "${APP_DIR}/who.ini";
fi
fi