Comment 10 for bug 850309

Revision history for this message
Serge Hallyn (serge-hallyn) wrote :

What we need is to have the static-network-up (plus subsequent fixes) SRUd to lucid..natty, and to have libvirt-bin wait on static-network-up rather than on 'stopped networking'.

@Robert,

as a workaround, I would suggest you change your /etc/init/libvirt-bin.conf to add a 'sleep 5'.

So in place of

# If you used to set $libvirtd_opts in /etc/default/libvirt-bin,
# change the 'exec' line here instead.
exec /usr/sbin/libvirtd $libvirtd_opts

You would now have

# If you used to set $libvirtd_opts in /etc/default/libvirt-bin,
# change the 'exec' line here instead.
script
    sleep 5
    exec /usr/sbin/libvirtd $libvirtd_opts
end script