summaryrefslogtreecommitdiffstats
path: root/adei/files/openshift-entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'adei/files/openshift-entrypoint.sh')
-rwxr-xr-xadei/files/openshift-entrypoint.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/adei/files/openshift-entrypoint.sh b/adei/files/openshift-entrypoint.sh
new file mode 100755
index 0000000..6dde9a8
--- /dev/null
+++ b/adei/files/openshift-entrypoint.sh
@@ -0,0 +1,17 @@
+#! /bin/bash
+
+mkdir -p /adei/{src,cfg,tmp,sys,log,mail}
+
+
+while [ ! -f /adei/cfg/.ready ]; do
+ echo "Waiting for ADEI intialization..."
+ sleep 5
+done
+
+while [ ! -f "$1" ]; do
+ echo "The script $1 is not populated yet. Waiting...."
+ sleep 1
+done
+
+echo "Running: $@"
+exec /bin/bash "$@"