1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-20 14:03:36 +03:00

M #-: Fix for backup utility

Wrong variable name used to compose disk path in backup_qcow2.rb
This commit is contained in:
Ruben S. Montero 2022-11-23 16:44:58 +01:00
parent 6a86330e1f
commit 3ec58a2f0f
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -593,7 +593,7 @@ class KVMDomain
next unless disks.include? did
sdisk = QemuImg.new("#{@vm_dir}/disk.#{d}")
sdisk = QemuImg.new("#{@vm_dir}/disk.#{did}")
ddisk = "#{@bck_dir}/disk.#{did}.0"
sdisk.convert(ddisk, :m => '4', :O => 'qcow2')