Skip to content
Permalink
5.16.0
Switch branches/tags

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?
Go to file
@mchyzer
Latest commit 2439090 Mar 28, 2023 History
2 contributors

Users who have contributed to this file

@chubing @mchyzer
executable file 35 lines (29 sloc) 1.43 KB
#!/bin/bash
echo "grouperContainer; INFO: (library.sh) Start loading library.sh"
#dos2unix /usr/local/bin/library*.sh
#echo "grouperContainer; INFO: (library.sh) dos2unix /usr/local/bin/library*.sh , result=$?"
#dos2unix /usr/local/bin/grouper*.sh
#echo "grouperContainer; INFO: (library.sh) dos2unix /usr/local/bin/grouper*.sh , result=$?"
#for f in /usr/local/bin/library*.sh /usr/local/bin/grouper*.sh; do
# TFILE=$(mktemp) && dos2unix -q -n $f $TFILE && cat $TFILE > $f
# echo "grouperContainer; INFO: (library.sh) dos2unix $f, result=$?"
# rm $TFILE
#done
. /usr/local/bin/libraryPrep.sh
. /usr/local/bin/libraryPrepOnly.sh
. /usr/local/bin/libraryRunCommand.sh
. /usr/local/bin/librarySetupFiles.sh
. /usr/local/bin/librarySetupFilesForComponent.sh
. /usr/local/bin/librarySetupFilesTomcat.sh
# base definitions of hooks
. /usr/local/bin/grouperScriptHooksBase.sh
# need this before the copy happens
if [ -f /opt/grouper/slashRoot/usr/local/bin/grouperScriptHooks.sh ] ; then
cp /opt/grouper/slashRoot/usr/local/bin/grouperScriptHooks.sh /usr/local/bin/grouperScriptHooks.sh
returnCode=$?
echo "grouperContainer; INFO: (library.sh) cp /opt/grouper/slashRoot/usr/local/bin/grouperScriptHooks.sh /usr/local/bin/grouperScriptHooks.sh, result=$returnCode"
if [ $returnCode != 0 ]; then exit $returnCode; fi
fi
# implementations of custom hooks
. /usr/local/bin/grouperScriptHooks.sh
echo "grouperContainer; INFO: (library.sh) End loading library.sh"