Remove manual etcd usage. No longer needed.

This commit is contained in:
James Shubin
2016-07-05 06:58:04 -04:00
parent 78d769797f
commit 94b447a9c5
12 changed files with 8 additions and 64 deletions

View File

@@ -1,9 +1,8 @@
# NOTE: boiler plate to wait on mgmt; source with: . wait.sh; should NOT be +x
while test "`jobs -p`" != "" && test "`jobs -p`" != "`pidof etcd`"
while test "`jobs -p`" != ""
do
for j in `jobs -p`
do
[ "$j" = "`pidof etcd`" ] && continue # don't wait for etcd
wait $j || continue # wait for mgmt job $j
done
done