Commit 1602df1e authored by Dietmar Maurer's avatar Dietmar Maurer

always create nfs storage with 'vers=3'

We should make that configurabel in future. But for now vers=3 seems to
be more reliable.
parent 81ebd380
pve-manager (2.0-18) unstable; urgency=low
* add Datacenter summary
* use NFS version 3 by default when creating a new NFS storage.
-- Proxmox Support Team <support@proxmox.com> Fri, 23 Dec 2011 10:39:34 +0100
......
......@@ -63,6 +63,9 @@ Ext.define('PVE.storage.NFSInputPanel', {
if (me.create) {
values.type = 'nfs';
// hack: for now we always create nvf v3
// fixme: make this configurable
values.options = 'vers=3';
} else {
delete values.storage;
}
......
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