search for: 0cd7f74

Displaying 2 results from an estimated 2 matches for "0cd7f74".

Did you mean: 00cd7c74
2015 Aug 12
2
[PATCH 1/2] inspect: recognize the Alpine Linux distribution
...0644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -1055,6 +1055,10 @@ Currently defined distros are: =over 4 +=item \"alpinelinux\" + +Alpine Linux. + =item \"archlinux\" Arch Linux. diff --git a/src/guestfs-internal.h b/src/guestfs-internal.h index bbd7fb4..0cd7f74 100644 --- a/src/guestfs-internal.h +++ b/src/guestfs-internal.h @@ -552,6 +552,7 @@ enum inspect_os_distro { OS_DISTRO_FREEBSD, OS_DISTRO_NETBSD, OS_DISTRO_COREOS, + OS_DISTRO_ALPINE_LINUX, }; enum inspect_os_package_format { diff --git a/src/inspect-fs-unix.c b/src/inspect-fs-unix.c...
2015 Aug 12
0
[PATCH 2/2] inspect: support the APK package manager and its format
...gt;. +C<portage>, C<pisi>, C<pacman>, C<urpmi>, C<zypper>, C<apk>. Future versions of libguestfs may return other strings. Please read L<guestfs(3)/INSPECTION> for more details." }; diff --git a/src/guestfs-internal.h b/src/guestfs-internal.h index 0cd7f74..0c8857c 100644 --- a/src/guestfs-internal.h +++ b/src/guestfs-internal.h @@ -563,6 +563,7 @@ enum inspect_os_package_format { OS_PACKAGE_FORMAT_EBUILD, OS_PACKAGE_FORMAT_PISI, OS_PACKAGE_FORMAT_PKGSRC, + OS_PACKAGE_FORMAT_APK, }; enum inspect_os_package_management { @@ -576,6 +577,7...