Bug 12194 - Ubuntu init script can fall into infinite loop

Bug 11723 - (Ubuntu Install) Management Server service won't restart

patch from community

status 11723: resolved fixed
This commit is contained in:
frank 2011-12-19 14:48:53 -08:00
parent 55175fb2fd
commit 761069440e
1 changed files with 2 additions and 2 deletions

View File

@ -37,10 +37,10 @@ wait_for_network() {
if ip addr show cloudbr0 |grep -w inet > /dev/null 2>&1; then
break
else
sleep 1
let i=$i+1
continue
fi
sleep 1
let i=$i+1
done
}