search for: storagedir

Displaying 1 result from an estimated 1 matches for "storagedir".

2009 Jul 24
2
[PATCH] Initial drop of virt-v2v
...+L<Sys::Guestfs::Storage> for a description of its exported methods. + +=cut + +use constant NAME => "qcow2"; + +sub new +{ + my $class = shift; + + my $options = shift; + + my $self = $options; + bless ($self, $class); + + # Configuration defaults + $self->{storagedir} = "/var/tmp" if(!defined($self->{storagedir})); + + return $self; +} + +sub get_name +{ + my $class = shift; + + return NAME; +} + +sub get_options +{ + my $class = shift; + + return (["storagedir=s", "storagedir", + "The directory we...