fix bug #148: set maxfiles for default local storage

This commit is contained in:
Dietmar Maurer
2012-04-05 14:40:01 +02:00
parent dc2deeb8fe
commit 369977e8bb
3 changed files with 9 additions and 2 deletions

View File

@ -2,7 +2,7 @@ RELEASE=2.0
VERSION=2.0
PACKAGE=libpve-storage-perl
PKGREL=16
PKGREL=17
DESTDIR=
PREFIX=/usr

View File

@ -458,7 +458,8 @@ sub parse_config {
$ids->{local} = {
type => 'dir',
priority => $pri++,
path => '/var/lib/vz',
path => '/var/lib/vz',
maxfiles => 0,
content => { images => 1, rootdir => 1, vztmpl => 1, iso => 1},
};
}

View File

@ -1,3 +1,9 @@
libpve-storage-perl (2.0-17) unstable; urgency=low
* fix bug #148: set maxfiles for default local storage
-- Proxmox Support Team <support@proxmox.com> Thu, 05 Apr 2012 14:39:44 +0200
libpve-storage-perl (2.0-16) unstable; urgency=low
* use dir_glob_* from PVE::Tools