From 59abc310f087a5c8fd58fd71623b36cac49e9bf4 Mon Sep 17 00:00:00 2001 From: Alwin Antreich Date: Wed, 4 Jul 2018 12:43:29 +0200 Subject: [PATCH] Add cephfs to allowed storages for vzdump backup Signed-off-by: Alwin Antreich --- PVE/VZDump.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/VZDump.pm b/PVE/VZDump.pm index a0376ef9..7fc69f98 100644 --- a/PVE/VZDump.pm +++ b/PVE/VZDump.pm @@ -223,7 +223,7 @@ sub storage_info { die "can't use storage type '$type' for backup\n" if (!($type eq 'dir' || $type eq 'nfs' || $type eq 'glusterfs' - || $type eq 'cifs')); + || $type eq 'cifs' || $type eq 'cephfs')); die "can't use storage '$storage' for backups - wrong content type\n" if (!$scfg->{content}->{backup});