]> git.proxmox.com Git - pve-storage.git/commitdiff
fix bug #148: set maxfiles for default local storage
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 5 Apr 2012 12:40:01 +0000 (14:40 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 5 Apr 2012 12:40:01 +0000 (14:40 +0200)
Makefile
PVE/Storage.pm
changelog.Debian

index beed3569e5d6f58206aba413b45d1178cd652573..67ebde1f3f22f539ba4cd87da039e5c55ea67d9b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ RELEASE=2.0
 
 VERSION=2.0
 PACKAGE=libpve-storage-perl
-PKGREL=16
+PKGREL=17
 
 DESTDIR=
 PREFIX=/usr
index c72a62d0f682abd7a21cab12a95b68b105d39e1d..4148ed34ca21b1c34ba037f3938f94ede58bb859 100755 (executable)
@@ -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},
        };
     }
index a011140f6bb6727e71ce537a58bfa891f09c4226..9f21ff3e712820ad8c11c0fe2878650fff9fe5c2 100644 (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