Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Loading status checks…
Added some files configuration in order to get grouper app running
villadalmine
committed
Sep 7, 2016
1 parent
b4781fe
commit 505e39a
Showing
6 changed files
with
32 additions
and
17 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
#!/bin/bash | ||
|
||
log="/tmp/grouper.log" | ||
|
||
rm -f /tmp/firsttimerunning >> $log | ||
log="/tmp/grouper-cleanup.log" | ||
date >> $log | ||
if [ -z ${COMPOSE+x} ];then | ||
echo "Not composed so not waiting for MariaDB and first time running was ok: " >> $log | ||
rm -f /tmp/firsttimerunning >> $log | ||
else | ||
echo "Composed with MariaDB, running completed" >> $log | ||
rm -f /tmp/firsttimerunning >> $log | ||
fi |
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
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
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