Use SCSI controller as default for l26 guests fix #1105

NB: This is only for new created VMs.
This commit is contained in:
Emmanuel Kasper 2016-09-15 09:34:06 +02:00 committed by Dietmar Maurer
parent eca87c69bc
commit 9daa22a630

View File

@ -40,11 +40,12 @@ Ext.define('PVE.qemu.OSDefaults', {
scsihw: 'virtio-scsi-pci' scsihw: 'virtio-scsi-pci'
}; };
// both of them are in kernel since 2.6.25 // virtio-net is in kernel since 2.6.25
// virtio-scsi since 3.2 but backported in RHEL with 2.6 kernel
addOS({ addOS({
pveOS: 'l26', pveOS: 'l26',
parent : 'generic', parent : 'generic',
busType: 'virtio', busType: 'scsi',
networkCard: 'virtio' networkCard: 'virtio'
}); });