>  
> +sub is_shared_only {
> +    my ($class, $conf, $scfg) = @_;
> +
> +    my $issharedonly = 1;
> +    PVE::QemuServer::foreach_drive($conf, sub {
> +     my ($ds, $drive) = @_;
> +
> +     # exit early
> +     return if !$issharedonly;
> +
> +     return if $drive->{file} eq 'none'; # cdrom with no file
> +     my $sid = PVE::Storage::parse_volume_id($drive->{file});

I guess this does not work for absolute paths (e.g. /dev/sda5)

> +     my $storage = PVE::Storage::storage_config($scfg, $sid);

_______________________________________________
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to