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/container_files/mp-dir/active-spring-profiles
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The container is now built directly from the root directory. Even the simplest composition was moved to demo/plain.
executable file
13 lines (11 sloc)
149 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 | |
case $AUTHENTICATION in | |
shibboleth) | |
echo "default,sso" | |
;; | |
internal) | |
echo "default" | |
;; | |
*) | |
echo "default" | |
esac | |