Actions
Bug #2562
closedHosts created with wrong listen address
Description
Setting the listen address for new domains to 0 is breaking libvirt's API standard, http://libvirt.org/formatdomain.html#elementsGraphics
Changed
lib/foreman/model/libvirt.rb#console:
vm.update_display(:password => password, :listen => '0')
to
vm.update_display(:password => password, :listen => '0.0.0.0')
The websocket still works (and starts working for existing systems), and virt-manager starts working again (For newly defined machines)
See pull request https://github.com/theforeman/foreman/pull/626
Updated by Dominic Cleal over 11 years ago
- Status changed from New to Ready For Testing
- Priority changed from High to Normal
Updated by Ryan Davies over 11 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset 710dfa86835e7b8b430cf59646a7888746c3b0bc.
Actions