[pve-devel] [PATCH 43/48] rbd: parse_volume : parse base
Alexandre Derumier
aderumier at odiso.com
Tue Jan 29 17:14:25 CET 2013
Signed-off-by: Alexandre Derumier <aderumier at odiso.com>
---
PVE/Storage/RBDPlugin.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/PVE/Storage/RBDPlugin.pm b/PVE/Storage/RBDPlugin.pm
index d7305b2..a58661a 100644
--- a/PVE/Storage/RBDPlugin.pm
+++ b/PVE/Storage/RBDPlugin.pm
@@ -185,8 +185,8 @@ sub options {
sub parse_volname {
my ($class, $volname) = @_;
- if ($volname =~ m/^(vm-(\d+)-\S+)$/) {
- return ('images', $1, $2);
+ if ($volname =~ m/^((vm|base)-(\d+)-\S+)$/) {
+ return ('images', $1, $3);
}
die "unable to parse rbd volume name '$volname'\n";
--
1.7.10.4
More information about the pve-devel
mailing list