Commit 923f4c10 authored by Dietmar Maurer's avatar Dietmar Maurer

fix cache selector: default cache is 'none'

parent 4b4ebfe8
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
......
...@@ -2,7 +2,7 @@ RELEASE=2.3 ...@@ -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
......
...@@ -6,7 +6,7 @@ Ext.define('PVE.form.CacheTypeSelector', { ...@@ -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'],
......
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