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?
grouper_training/base/container_files/usr-local-bin/grouperScriptHooks.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
18 lines (12 sloc)
824 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/sh | |
### DO NOT EDIT OR OVERLAY THIS FILE | |
# These definitions are here to define the functions. | |
# You can overlay the grouperScriptHooks.sh file with any definitions of these functions | |
# called after the setupFiles functions is called, almost before the process starts | |
grouperScriptHooks_setupFilesPost() { | |
echo "trainingContainer; INFO: (grouperScriptHooks.sh-grouperScriptHooks_setupFilesPost) starting..." | |
sed -i "s|Rewrite|#Rewrite|g" /etc/httpd/conf.d/ssl-enabled.conf | |
echo "trainingContainer; INFO: (grouperScriptHooks.sh-grouperScriptHooks_setupFilesPost) sed -i 's|Rewrite|#Rewrite|g' /etc/httpd/conf.d/ssl-enabled.conf , result=$?" | |
} | |
export -f grouperScriptHooks_setupFilesPost | |
echo "trainingContainer; INFO: (grouperScriptHooks.sh-body) export -f grouperScriptHooks_setupFilesPost, result=$?" | |