Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
midPoint_container/demo/grouper/ssh-tunnel-redir-fix.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
29 lines (25 sloc)
885 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This file is used for trainings with SSH tunnels. | |
# It will change the hard-coded ports for Shibboleth, but will keep localhost. | |
declare -a fileList=( | |
"configs-and-secrets/midpoint/shibboleth/idp-metadata.xml" | |
"configs-and-secrets/grouper/shibboleth/idp-metadata.xml" | |
"idp/shibboleth-idp/metadata/idp-metadata.xml" | |
"idp/shibboleth-idp/metadata/grouper-sp.xml" | |
"idp/shibboleth-idp/metadata/midpoint-sp.xml" | |
"idp/shibboleth-idp/metadata/midpoint-sp-new.xml" | |
) | |
if [ $# -eq 0 ] | |
then | |
echo 'Please specify a directory as the first argument (e.g. ".")' | |
exit | |
fi | |
echo "Working in directory: $1"; | |
for f in "${fileList[@]}" | |
do | |
echo "Replacing in: $1/$f..." | |
# We cannot SSH tunnel port 443 without root, so using 10443 | |
sed -i 's#https://localhost/#https://localhost:10443/#g' $f | |
# sed -i 's#https://localhost:4443/#https://localhost:14443/#g' $f | |
done | |
exit |