Properly don't fail on success
When a thing is successful, we should not consider it to be a failure. Doing so will cause it to have further mental anguish and feelings of inadequacy. We don't support that sort of demeaning attitude in OpenStack. Change-Id: Ic92f5edf730297c200b916f21d0fe60dcab41d00
This commit is contained in:
parent
9c650cc731
commit
b683a5afd3
@ -51,7 +51,9 @@ cd /opt/config/production
|
|||||||
|
|
||||||
# Run things that need to be ordered
|
# Run things that need to be ordered
|
||||||
for host in $OVERRIDE_LIST; do
|
for host in $OVERRIDE_LIST; do
|
||||||
if run_ssh $host ; then
|
run_ssh $host
|
||||||
|
ret=$?
|
||||||
|
if [ $ret != 0 ] ; then
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user