Skip to content
Permalink
f30d47e419
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
 
 
Cannot retrieve contributors at this time
executable file 12 lines (10 sloc) 278 Bytes
#!/bin/bash
if [[ -e /tmp/initialize.gsh ]]
then
echo Executing /tmp/initialize.gsh on the first start
/opt/grouper/grouper.apiBinary/bin/gsh /tmp/initialize.gsh
rm /tmp/initialize.gsh
else
echo Skipping execution of /tmp/initialize.gsh as it is not present
fi
daemon