X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=perl%2Flib%2FSys%2FGuestfs%2FLib.pm;h=5d48ba81190a43e5a3226bae8b3b2609f7438d87;hp=f0840901535e387f846171280ae5f26d3d62c219;hb=000f54aac80191b42e0c307440d09fafd4d5fac2;hpb=06f6cc32f02c25b88e763237332b17dc7c6c6837 diff --git a/perl/lib/Sys/Guestfs/Lib.pm b/perl/lib/Sys/Guestfs/Lib.pm index f084090..5d48ba8 100644 --- a/perl/lib/Sys/Guestfs/Lib.pm +++ b/perl/lib/Sys/Guestfs/Lib.pm @@ -78,7 +78,7 @@ use vars qw(@EXPORT_OK @ISA); $g = open_guest ([$img1, $img2, ...], address => $uri, ...); - ($g, $conn, $dom) = open_guest ($name); + ($g, $conn, $dom, @images) = open_guest ($name); This function opens a libguestfs handle for either the libvirt domain called C<$name>, or the disk image called C<$name>. Any disk images @@ -108,10 +108,10 @@ passed through to Cnew> unchanged. The implicit libvirt handle is closed after this function, I you call the function in C context, in which case the function returns a tuple of: the open libguestfs handle, the open -libvirt handle, and the open libvirt domain handle. (This is useful -if you want to do other things like pulling the XML description of the -guest). Note that if this is a straight disk image, then C<$conn> and -C<$dom> will be C. +libvirt handle, and the open libvirt domain handle, and a list of +images. (This is useful if you want to do other things like pulling +the XML description of the guest). Note that if this is a straight +disk image, then C<$conn> and C<$dom> will be C. If the C module is not available, then libvirt is bypassed, and this function can only open disk images. @@ -204,7 +204,7 @@ sub open_guest } } - return wantarray ? ($g, $conn, $dom) : $g + return wantarray ? ($g, $conn, $dom, @images) : $g } =head2 get_partitions @@ -489,10 +489,15 @@ The package format used by the guest distribution. One of: "rpm", "dpkg". The package management tool used by the guest distribution. One of: "rhn", "yum", "apt". -=item osversion +=item os_major_version (For root partitions only). -Operating system version. +Operating system major version number. + +=item os_minor_version + +(For root partitions only). +Operating system minor version number. =item fstab @@ -619,13 +624,15 @@ sub _check_linux_root my $r = shift; # Look into /etc to see if we recognise the operating system. - if ($g->is_file ("/etc/redhat-release")) { + # N.B. don't use $g->is_file here, because it might be a symlink + if ($g->exists ("/etc/redhat-release")) { $r->{package_format} = "rpm"; $_ = $g->cat ("/etc/redhat-release"); - if (/Fedora release (\d+\.\d+)/) { + if (/Fedora release (\d+)(?:\.(\d+))?/) { $r->{osdistro} = "fedora"; - $r->{osversion} = "$1"; + $r->{os_major_version} = "$1"; + $r->{os_minor_version} = "$2" if(defined($2)); $r->{package_management} = "yum"; } @@ -650,16 +657,23 @@ sub _check_linux_root else { die }; if (/$distro.*release (\d+).*Update (\d+)/) { - $r->{osversion} = "$1.$2"; + $r->{os_major_version} = "$1"; + $r->{os_minor_version} = "$2"; } - elsif (/$distro.*release (\d+(?:\.(?:\d+))?)/) { - $r->{osversion} = "$1"; + elsif (/$distro.*release (\d+)(?:\.(\d+))?/) { + $r->{os_major_version} = "$1"; + + if(defined($2)) { + $r->{os_minor_version} = "$2"; + } else { + $r->{os_minor_version} = "0"; + } } # Package management in RHEL changed in version 5 if ($r->{osdistro} eq "rhel") { - if ($r->{osversion} >= 5) { + if ($r->{os_major_version} >= 5) { $r->{package_management} = "yum"; } else { $r->{package_management} = "rhn"; @@ -675,9 +689,10 @@ sub _check_linux_root $r->{package_management} = "apt"; $_ = $g->cat ("/etc/debian_version"); - if (/(\d+\.\d+)/) { + if (/(\d+)\.(\d+)/) { $r->{osdistro} = "debian"; - $r->{osversion} = "$1"; + $r->{os_major_version} = "$1"; + $r->{os_minor_version} = "$2"; } else { $r->{osdistro} = "debian"; } @@ -866,9 +881,13 @@ Operating system type, eg. "linux", "windows". Operating system distribution, eg. "debian". -=item version +=item major_version + +Operating system major version, eg. "4". + +=item minor_version -Operating system version, eg. "4.0". +Operating system minor version, eg "3". =item root @@ -934,7 +953,10 @@ sub _get_os_version $r->{os} = $r->{root}->{fsos} if exists $r->{root}->{fsos}; $r->{distro} = $r->{root}->{osdistro} if exists $r->{root}->{osdistro}; - $r->{version} = $r->{root}->{osversion} if exists $r->{root}->{osversion}; + $r->{major_version} = $r->{root}->{os_major_version} + if exists $r->{root}->{os_major_version}; + $r->{minor_version} = $r->{root}->{os_minor_version} + if exists $r->{root}->{os_minor_version}; $r->{package_format} = $r->{root}->{package_format} if exists $r->{root}->{package_format}; $r->{package_management} = $r->{root}->{package_management}