Commit 6d961322 authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #174: add cpuunits to KVM options

parent 019b0abc
......@@ -5,6 +5,8 @@ pve-manager (2.0-64) unstable; urgency=low
* fix bug #177: allow memory up to 512GB
* fix bug #174: add cpuunits to KVM options
-- Proxmox Support Team <support@proxmox.com> Tue, 24 Apr 2012 08:09:23 +0200
pve-manager (2.0-63) unstable; urgency=low
......
......@@ -139,6 +139,23 @@ Ext.define('PVE.qemu.Options', {
}
} : undefined
},
cpuunits: {
header: 'CPU units',
defaultValue: '1000',
editor: caps.vms['VM.Config.CPU'] ? {
xtype: 'pveWindowEdit',
subject: 'CPU units',
items: {
xtype: 'numberfield',
name: 'cpuunits',
fieldLabel: 'CPU units',
minValue: 8,
maxValue: 500000,
defaultValue: 1000,
allowBlank: false
}
} : undefined
},
freeze: {
header: 'Freeze CPU at startup',
defaultValue: false,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment