]> git.proxmox.com Git - qemu-server.git/blobdiff - PVE/CLI/qm.pm
qm: remote migration: improve error when storage cannot be found
[qemu-server.git] / PVE / CLI / qm.pm
index c3c298241255265711c882129a5ae89a0262d7f2..b17b4fe25d5bd21e9fe188e82998972b1dc29c36 100755 (executable)
@@ -251,7 +251,7 @@ __PACKAGE__->register_method({
        my $check_remote_storage = sub {
            my ($storage) = @_;
            my $found = [ grep { $_->{storage} eq $storage } @$storages ];
-           die "remote: storage '$storage' does not exist!\n"
+           die "remote: storage '$storage' does not exist (or missing permission)!\n"
                if !@$found;
 
            $found = @$found[0];