fix cache selector: default cache is 'none'

This commit is contained in:
Dietmar Maurer 2013-02-25 06:35:26 +01:00
parent adf8c213cc
commit db37ad9b97
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 pve-manager (2.3-9) unstable; urgency=low
* fix bug #337: avoid warning with pvectl * fix bug #337: avoid warning with pvectl

View File

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

View File

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