]> git.proxmox.com Git - qemu-server.git/commitdiff
create ci disk: long line cleanup
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 24 Apr 2019 13:33:32 +0000 (13:33 +0000)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 24 Apr 2019 13:33:32 +0000 (13:33 +0000)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/API2/Qemu.pm

index d3f37bb037f18dc420676fb9feb861d57134f93a..184f32a6daff7175049721d3a944e719e26d3282 100644 (file)
@@ -158,10 +158,9 @@ my $create_disks = sub {
                $fmt = $disk->{format} // "raw";
            }
 
-           # Initial disk created with 4MB, every time it is regenerated the disk is aligned to 4MB again.
-           my $cloudinit_iso_size = 4; # in MB
-           my $volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid, 
-                                                 $fmt, $name, $cloudinit_iso_size*1024);
+           # Initial disk created with 4 MB and aligned to 4MB on regeneration
+           my $ci_size = 4 * 1024;
+           my $volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid, $fmt, $name, $ci_size);
            $disk->{file} = $volid;
            $disk->{media} = 'cdrom';
            push @$vollist, $volid;