fix cache selector: default cache is 'none'

This commit is contained in:
Dietmar Maurer 2013-02-25 06:35:26 +01:00
parent 4b4ebfe88c
commit 923f4c1037
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
pve-manager (2.3-10) unstable; urgency=low
* fix cache selector: default cache is 'none'
-- Proxmox Support Team <support@proxmox.com> Mon, 25 Feb 2013 06:35:06 +0100
pve-manager (2.3-9) unstable; urgency=low
* fix bug #337: avoid warning with pvectl

View File

@ -2,7 +2,7 @@ RELEASE=2.3
VERSION=2.3
PACKAGE=pve-manager
PACKAGERELEASE=9
PACKAGERELEASE=10
BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5

View File

@ -6,7 +6,7 @@ Ext.define('PVE.form.CacheTypeSelector', {
var me = this;
me.data = [
['', 'Default (Write back)'],
['', 'Default (No cache)'],
['directsync', 'Direct sync'],
['writethrough', 'Write through'],
['writeback', 'Write back'],