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:
Monty Taylor 2014-04-18 11:57:13 -07:00
parent 9c650cc731
commit b683a5afd3

View File

@ -51,7 +51,9 @@ cd /opt/config/production
# Run things that need to be ordered
for host in $OVERRIDE_LIST; do
if run_ssh $host ; then
run_ssh $host
ret=$?
if [ $ret != 0 ] ; then
break
fi
done