-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jim Van Fleet
committed
Sep 2, 2016
1 parent
1594e35
commit a96a0de
Showing
4 changed files
with
34 additions
and
128 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #!/bin/bash -x | ||
|
|
||
| # Configure your access (e.g. rewriting grouper.installer.properties) here |
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 |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| #!/bin/bash -x | ||
|
|
||
| log="/tmp/start.log" | ||
|
|
||
| echo "Starting Container: " > $log | ||
| date >> $log | ||
| echo "" >> $log | ||
|
|
||
| if [ -e "/tmp/firsttimerunning" ]; then | ||
|
|
||
| set -e | ||
|
|
||
| /root/configure.sh | ||
|
|
||
| cd /opt/grouper/2.3.0/grouper.apiBinary-2.3.0 && GROUPER_HOME=/opt/grouper/2.3.0/grouper.apiBinary-2.3.0 bin/gsh.sh -check | ||
|
|
||
| rm -f /tmp/firsttimerunning | ||
| else | ||
| echo "Grouper DB already provisioned" >> $log | ||
| fi | ||
|
|
||
| exit 0 |
This file was deleted.
Oops, something went wrong.