Hi
to solve the issue of not able to add more than 7 disk, add this
$unitNumber++ if ($unitNumber > 6);
just below
my $controllerKey = $controller->key;
my $unitNumber = $#{$controller->device} + 1;
in your
file.after making changes you will able to add more disk till 15 disks
thanks