Comment 53 for bug 450082

Revision history for this message
Patrick Ulbrich (pulb) wrote :

it seems the problem is indeed a missing internet connection.
i created this wrapper script which is called at startup instead of the ubuntu-one default one:

"
#!/bin/bash

# wait for active internet connection
while [ "$(ifconfig | grep 192.168)" == "" ]; do
 sleep 2
done

ubuntuone-client-applet
"