Gitiles
Code Review
Sign In
gerrit.opencord.org
/
platform-install
/
df5f1d4b417500c9d4c542a5d8939b2c6cdc1b34
/
.
/
scripts
/
wait-for-services.sh
blob: da4ef1f405de197f1159b62db38fcfce2ffa4fa9 [
file
] [
log
] [
blame
]
#!/bin/sh
# Wait for there to be no services in pending state
while
$
(
juju status
--
format
=
summary
|
grep
-
q pending
)
do
sleep
10
done