'compose info' is 'compose details' on RHEL-7

Add the correct composer-cli command 'compose details' in places
where 'compose info' was still used on RHEL-7
(see commit 808454b561)

Related: rhbz#1687595
This commit is contained in:
Jiri Kortus 2019-03-27 17:33:35 +01:00 committed by Alexander Todorov
parent c6e8befe21
commit 5d6446a7bd
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ rlJournalStart
rlPhaseStartTest "compose finished"
if [ -n "$UUID" ]; then
until $CLI compose info $UUID | grep FINISHED; do
until $CLI compose details $UUID | grep FINISHED; do
sleep 20
rlLogInfo "Waiting for compose to finish ..."
done;

View File

@ -54,7 +54,7 @@ __EOF__
rlPhaseStartTest "compose finished"
if [ -n "$UUID" ]; then
until $CLI compose info $UUID | grep FINISHED; do
until $CLI compose details $UUID | grep FINISHED; do
sleep 20
rlLogInfo "Waiting for compose to finish ..."
done;

View File

@ -27,7 +27,7 @@ rlJournalStart
rlPhaseStartTest "compose finished"
if [ -n "$UUID" ]; then
until $CLI compose info $UUID | grep FINISHED; do
until $CLI compose details $UUID | grep FINISHED; do
sleep 10
rlLogInfo "Waiting for compose to finish ..."
done;