Skip to content

Commit c028711

Browse files
committed
Use a default machine of 'pc' rather than 'pc-1.0'
The 'pc-1.0' was available via qemu-system-x86_64 on CentOS 7, but this is no longer available on CentOS 8.
1 parent 619962d commit c028711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
console_log_path: >-
3030
{{ vm.console_log_path |
3131
default(libvirt_vm_default_console_log_dir + '/' + vm.name + '-console.log', true) }}
32-
machine_default: "{{ none if libvirt_vm_engine == 'kvm' else 'pc-1.0' }}"
32+
machine_default: "{{ none if libvirt_vm_engine == 'kvm' else 'pc' }}"
3333
machine: "{{ vm.machine | default(machine_default, true) }}"
3434
cpu_mode: "{{ vm.cpu_mode | default(libvirt_cpu_mode_default) }}"
3535
volumes: "{{ vm.volumes | default([], true) }}"

0 commit comments

Comments
 (0)