Skip to content
Permalink
2442377515
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
villadalmine Removed supervisord
Latest commit e6cbc62 Sep 8, 2016 History
0 contributors

Users who have contributed to this file

executable file 23 lines (15 sloc) 409 Bytes
#!/bin/bash -x
log="/tmp/start-main.log"
echo "Starting Container: " > $log
date >> $log
echo "" >> $log
if [ -e "/tmp/firsttimerunning" ]; then
set -e
/opt/bin/configure.sh >> $log
/opt/bin/check.sh >> $log
/opt/bin/cleanup.sh >> $log
else
echo "Grouper container has run." >> $log
echo "If there are problems, docker rm this container and try again." >> $log
fi
#exit 0