summaryrefslogtreecommitdiffstats
path: root/adei/openshift-entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'adei/openshift-entrypoint.sh')
-rwxr-xr-xadei/openshift-entrypoint.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/adei/openshift-entrypoint.sh b/adei/openshift-entrypoint.sh
new file mode 100755
index 0000000..b4fc4f4
--- /dev/null
+++ b/adei/openshift-entrypoint.sh
@@ -0,0 +1,14 @@
+#! /bin/bash
+
+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 "$@"