search for: guestfs_inspect_is_live

Displaying 20 results from an estimated 35 matches for "guestfs_inspect_is_live".

2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.
2013 Feb 18
4
[PATCH for discussion only 0/3] Implement mutexes to limit number of concurrent instances of libguestfs.
These three patches (for discussion only, NOT to be applied) implement a mutex system that lets the user limit the number of libguestfs instances that can be launched per host. There are two uses that I have identified for this: firstly so we can enable parallel-tests (the default in automake >= 1.13) without blowing up the host. Secondly oVirt has raised concerns about how to limit the
2017 Jun 16
1
[PATCH] inspection: Deprecate APIs and remove support for inspecting installer CDs.
...t) BAD_CAST str)); free (str); - str = guestfs_inspect_get_format (g, root); - if (!str) exit (EXIT_FAILURE); - if (STRNEQ (str, "unknown")) - XMLERROR (-1, - xmlTextWriterWriteElement (xo, BAD_CAST "format", - BAD_CAST str)); - free (str); - - r = guestfs_inspect_is_live (g, root); - if (r > 0) { - XMLERROR (-1, - xmlTextWriterStartElement (xo, BAD_CAST "live")); - XMLERROR (-1, xmlTextWriterEndElement (xo)); - } - - r = guestfs_inspect_is_netinst (g, root); - if (r > 0) { - XMLERROR (-1, - xmlTextWriterStartEl...
2015 Oct 05
0
[PATCH 2/2] Fix whitespace.
...LURE); if (STRNEQ (str, "unknown")) XMLERROR (-1, - xmlTextWriterWriteElement (xo, BAD_CAST "format", - BAD_CAST str)); + xmlTextWriterWriteElement (xo, BAD_CAST "format", + BAD_CAST str)); free (str); r = guestfs_inspect_is_live (g, root); @@ -700,8 +701,8 @@ output_applications (xmlTextWriterPtr xo, char *root) if (apps->val[i].app2_display_name && apps->val[i].app2_display_name[0]) XMLERROR (-1, - xmlTextWriterWriteElement (xo, BAD_CAST "display_name", -...
2015 Oct 05
3
[PATCH 1/2] Change 'fprintf (stdout,...)' -> printf.
Result of earlier copy and paste. --- align/scan.c | 35 ++++++++++--------- cat/cat.c | 39 +++++++++++---------- cat/filesystems.c | 69 +++++++++++++++++++------------------- cat/log.c | 35 ++++++++++--------- cat/ls.c | 61 +++++++++++++++++---------------- df/main.c | 43 ++++++++++++------------ diff/diff.c | 67
2017 Jul 21
10
[PATCH v10 00/10] Reimplement inspection in the daemon.
v9 was here: https://www.redhat.com/archives/libguestfs/2017-July/msg00139.html This depends on these three series (the first two being single minor patches): https://www.redhat.com/archives/libguestfs/2017-July/msg00207.html https://www.redhat.com/archives/libguestfs/2017-July/msg00209.html https://www.redhat.com/archives/libguestfs/2017-July/msg00215.html There is no substantive change. I
2017 Jul 17
12
[PATCH v9 00/11] Reimplement inspection in the daemon.
This depends on the patch series "[PATCH 00/27] Reimplement many daemon APIs in OCaml." (https://www.redhat.com/archives/libguestfs/2017-July/msg00098.html) v8 was posted here: https://www.redhat.com/archives/libguestfs/2017-June/msg00274.html v9: - I split up the mega-patch into a more reviewable series of smaller, incremental patches. There are some other changes vs v8, but
2017 Aug 09
16
[PATCH v12 00/11] Reimplement inspection in the daemon.
This fixes almost everything. Note that it adds an extra commit which fixes the whole utf8/iconv business. It's probably better to list what isn't fixed: (1) I didn't leave the osinfo code around because I'm still haven't looked too closely at virt-builder-repository. Can't we just fetch this code from the git history when we need it? (2) I didn't change the way
2017 Jul 31
16
[PATCH v11 00/10] Reimplement inspection in the daemon.
v10: https://www.redhat.com/archives/libguestfs/2017-July/msg00245.html No actual change here, but I rebased and retested. Also this series now does not depend on any other patch series since everything else needed is upstream. Rich.
2011 Jan 25
0
builder-debian libguestfs success 36fe0acf8a2e72c223d7a9f7a93815ff276a3cc1
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2011 Jan 25
0
builder-ubuntu libguestfs success 36fe0acf8a2e72c223d7a9f7a93815ff276a3cc1
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2011 Jan 21
0
builder-debian libguestfs success 78f1405de05ef1f2efebafd8245658d1707e59ef
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2017 Jun 19
29
[PATCH v7 00/29] Reimplement inspection in the daemon.
v6 was posted here: https://www.redhat.com/archives/libguestfs/2017-June/msg00103.html and this requires the utilities refactoring posted here: https://www.redhat.com/archives/libguestfs/2017-June/msg00169.html Inspection is now complete[*], although not very well tested. I'm intending to compare the output of many guests using old & new virt-inspector to see if I can find any
2011 Jan 22
0
builder-ubuntu libguestfs success 78f1405de05ef1f2efebafd8245658d1707e59ef
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2011 Jan 28
1
builder-debian libguestfs FAILED tests f060d5bcd40b4a6506d7994e67d57dccab1651b8
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2011 Jan 28
0
builder-debian libguestfs FAILED tests b6c70b3f50472e20a33320e7d76887b011f33c64
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2011 Jan 29
0
builder-debian libguestfs success 6975e87153f593fddd5c27435c2e6347825daca9
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2011 Feb 03
1
builder-debian libguestfs success 8d7d7c4ecfd202e04d18736718e9c5bb125ce4f0
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_set_attach_method" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests...
2011 Feb 01
0
builder-debian libguestfs success 5079e0fff3f3c150818adb6febad6393b674f126
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests warning: "guestfs_vgs_full" has no tests warning:...
2011 Feb 08
0
builder-debian libguestfs success f455dc3814bf9f7e7e894ba81360acb0edd92464
..." has no tests warning: "guestfs_inspect_get_package_management" has no tests warning: "guestfs_inspect_list_applications" has no tests warning: "guestfs_inspect_get_hostname" has no tests warning: "guestfs_inspect_get_format" has no tests warning: "guestfs_inspect_is_live" has no tests warning: "guestfs_inspect_is_netinst" has no tests warning: "guestfs_inspect_is_multipart" has no tests warning: "guestfs_set_attach_method" has no tests warning: "guestfs_ll" has no tests warning: "guestfs_pvs_full" has no tests...