Commit fc0030d6 authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #456: allow glusterfs as backup storage

parent 7ed025e1
...@@ -84,7 +84,7 @@ sub storage_info { ...@@ -84,7 +84,7 @@ sub storage_info {
my $type = $scfg->{type}; my $type = $scfg->{type};
die "can't use storage type '$type' for backup\n" die "can't use storage type '$type' for backup\n"
if (!($type eq 'dir' || $type eq 'nfs')); if (!($type eq 'dir' || $type eq 'nfs' || $type eq 'glusterfs'));
die "can't use storage for backups - wrong content type\n" die "can't use storage for backups - wrong content type\n"
if (!$scfg->{content}->{backup}); if (!$scfg->{content}->{backup});
......
pve-manager (3.1-12) unstable; urgency=low
* fix bug #456: allow glusterfs as backup storage
-- Proxmox Support Team <support@proxmox.com> Mon, 16 Sep 2013 08:12:24 +0200
pve-manager (3.1-11) unstable; urgency=low pve-manager (3.1-11) unstable; urgency=low
* vzdump: fix hook script environment for job-* phase * vzdump: fix hook script environment for job-* phase
......
...@@ -2,7 +2,7 @@ RELEASE=3.1 ...@@ -2,7 +2,7 @@ RELEASE=3.1
VERSION=3.1 VERSION=3.1
PACKAGE=pve-manager PACKAGE=pve-manager
PACKAGERELEASE=11 PACKAGERELEASE=12
BINDIR=${DESTDIR}/usr/bin BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5 PERLLIBDIR=${DESTDIR}/usr/share/perl5
......
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