diff options
author | Richard Jones <rjones@trick.home.annexia.org> | 2009-07-09 14:01:58 +0100 |
---|---|---|
committer | Richard Jones <rjones@trick.home.annexia.org> | 2009-07-09 15:33:26 +0100 |
commit | 2f70ca487bee8babe5aef27f00a2131ea86ebd50 (patch) | |
tree | c1271a5ea3317b2e8851d2302b9d5b15fa770652 /src | |
parent | e3c2a599027f88a617b46b77be1673de0c94faee (diff) | |
download | libguestfs-2f70ca487bee8babe5aef27f00a2131ea86ebd50.tar.gz libguestfs-2f70ca487bee8babe5aef27f00a2131ea86ebd50.tar.xz libguestfs-2f70ca487bee8babe5aef27f00a2131ea86ebd50.zip |
Add Sys::Guestfs::Lib - useful functions for using libguestfs from Perl.
This adds an extra Perl module called Sys::Guestfs::Lib which
adds useful functions for using libguestfs from Perl.
The intention is that common code shared between virt-inspector,
virt-df and virt-v2v will move into this library.
This patch also changes virt-inspector to use this library.
Diffstat (limited to 'src')
-rwxr-xr-x | src/generator.ml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/generator.ml b/src/generator.ml index bc5b8056..d94ec146 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -6120,6 +6120,10 @@ Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, what filesystem is in each LV, etc.). It can also run commands in the context of the guest. Also you can access filesystems over FTP. +See also L<Sys::Guestfs::Lib(3)> for a set of useful library +functions for using libguestfs from Perl, including integration +with libvirt. + =head1 ERRORS All errors turn into calls to C<croak> (see L<Carp(3)>). @@ -6191,7 +6195,10 @@ Please see the file COPYING.LIB for the full license. =head1 SEE ALSO -L<guestfs(3)>, L<guestfish(1)>. +L<guestfs(3)>, +L<guestfish(1)>, +L<http://libguestfs.org>, +L<Sys::Guestfs::Lib(3)>. =cut " |