Comment 53 for bug 1561019

Revision history for this message
In , Mike (mike-redhat-bugs) wrote :

This bug still crops up from time to time due to the vagrant libvirt provider defaulting to `host-model`.

You can work around it by passing box.cpu-mode = 'host-passthrough' or another compatible option when you encounter this issue. (were 'box' is the provider object)

Example:

      LV_CPU_MODE = 'host-passthrough'

      machine.vm.provider :libvirt do |lv, override|
        lv.default_prefix = TYPE_NAME
        lv.memory = MEM_SIZE
        lv.cpu_mode = LV_CPU_MODE
      end