Comment 6 for bug 608423

Revision history for this message
Martin Pitt (pitti) wrote :

Chuck, can you please reupload with -v to include the previous lucid-proposed upload?

I see that you removed the "echo timeout", which was discussed in Prague. Thanks for fixing that.

I also see

@@ -30,15 +30,8 @@
     for i in `seq 1 30` ; do
- /usr/bin/mysqladmin --defaults-file=$HOME/debian.cnf ping
- ret = $?
- if [ $ret -eq 0 ] ; then
- break
- fi
+ /usr/bin/mysqladmin --defaults-file=$HOME/debian.cnf ping || ret=$?
                sleep 1

This removes the break, but I don't see why? If we don't break the loop on success, then it will always keep trying 30 times?