Skip to content

Commit

Permalink
doc: copy file storage
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiejol committed Oct 31, 2023
1 parent 69b0336 commit bcce71d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/Ravada/VM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2059,6 +2059,22 @@ sub shared_storage($self, $node, $dir) {
return $shared;
}

=head2 copy_file_storage
Copies a volume file to another storage
Args:
=over
=item * file
=item * storage
=back
=cut

sub copy_file_storage($self, $file, $storage) {
die "Error: file '$file' does not exist" if !$self->file_exists($file);

Expand Down

0 comments on commit bcce71d

Please sign in to comment.