[pve-devel] [PATCH 09/16] forbid snapshot create if current it's a template
Alexandre Derumier
aderumier at odiso.com
Mon Jan 21 10:48:04 CET 2013
Signed-off-by: Alexandre Derumier <aderumier at odiso.com>
---
PVE/QemuServer.pm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm
index c8dc768..1e21bbc 100644
--- a/PVE/QemuServer.pm
+++ b/PVE/QemuServer.pm
@@ -2895,6 +2895,10 @@ sub qemu_block_resize {
sub qemu_volume_snapshot {
my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
+ my $conf = PVE::QemuServer::load_config($vmid);
+
+ die "you can't take a snapshot if it's a template" if is_template($conf);
+
my $running = check_running($vmid);
return if !PVE::Storage::volume_snapshot($storecfg, $volid, $snap, $running);
--
1.7.10.4
More information about the pve-devel
mailing list