aboutsummaryrefslogtreecommitdiffstats
path: root/moon_forming/config_moon.sh
diff options
context:
space:
mode:
Diffstat (limited to 'moon_forming/config_moon.sh')
-rw-r--r--moon_forming/config_moon.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/moon_forming/config_moon.sh b/moon_forming/config_moon.sh
deleted file mode 100644
index 0a55898f..00000000
--- a/moon_forming/config_moon.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env bash
-
-populate_args=$*
-
-echo "Waiting for Consul (http://consul:8500)"
-while ! python -c "import requests; req = requests.get('http://consul:8500')" 2>/dev/null ; do
- sleep 5 ;
- echo -n "."
-done
-echo "."
-echo "Consul (http://consul:8500) is up."
-
-python3 /root/conf2consul.py /etc/moon/moon.conf
-
-echo "Waiting for DB (tcp://db:3306)"
-while ! python -c "import socket, sys; s = socket.socket(socket.AF_INET, socket.SOCK_STREAM); s.connect(('db', 3306)); sys.exit(0)" 2>/dev/null ; do
- sleep 5 ;
- echo -n "."
-done
-echo "."
-echo "Database (http://db:3306) is up."
-
-moon_db_manager upgrade
-
-echo "Waiting for Keystone (http://keystone:5000)"
-while ! python -c "import requests; req = requests.get('http://keystone:5000')" 2>/dev/null ; do
- sleep 5 ;
- echo -n "."
-done
-echo "."
-echo "Keystone (http://keystone:5000) is up."
-
-echo "Waiting for Manager (http://manager:8082)"
-while ! python -c "import requests; req = requests.get('http://manager:8082')" 2>/dev/null ; do
- sleep 5 ;
- echo -n "."
-done
-echo "."
-echo "Manager (http://manager:8082) is up."