Gitiles
Code Review
Sign In
gerrit.opencord.org
/
platform-install
/
828c9e8d69b6968e6702bee0ea62468e07e46da0
/
.
/
scripts
/
wait-for-services.sh
blob: da4ef1f405de197f1159b62db38fcfce2ffa4fa9 [
file
] [
log
] [
blame
]
Andy Bavier
c1dfb88
2015-10-07 16:20:24 -0400
[
diff
] [
blame
]
1
#!/bin/sh
2
3
# Wait for there to be no services in pending state
4
while
$
(
juju status
--
format
=
summary
|
grep
-
q pending
)
5
do
6
sleep
10
7
done