search for: inspect_app

Displaying 20 results from an estimated 33 matches for "inspect_app".

Did you mean: inspect_apps
2011 Oct 13
9
[PATCH 1/9] Partially fix --disable-erlang
From: Michael Scherer <misc at zarb.org> Without this, configure will always enable erlang, no matter what argument are passed. Now, we can disable it, even if configure still need the erlang compiler for some obscure reason. --- configure.ac | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 337a3ed..e0bed2f 100644 ---
2016 Mar 07
0
[PATCH] inspector: add --no-applications and --no-icon
..., 22 deletions(-) diff --git a/inspector/inspector.c b/inspector/inspector.c index dd5be44..1dbef50 100644 --- a/inspector/inspector.c +++ b/inspector/inspector.c @@ -50,6 +50,8 @@ int echo_keys = 0; const char *libvirt_uri = NULL; int inspector = 1; static const char *xpath = NULL; +static int inspect_apps = 1; +static int inspect_icon = 1; static void output (char **roots); static void output_roots (xmlTextWriterPtr xo, char **roots); @@ -80,6 +82,8 @@ usage (int status) " --format[=raw|..] Force disk format for -a option\n" " --help...
2017 Oct 05
2
[PATCH] inspector: Fix virt-inspector on *BSD guests (RHBZ#1144138).
...and the icon, ie. everything below this point. + * + * XXX As a workaround for BSD guests, because the Linux kernel + * driver cannot just mount a UFS filesystem, we must disable this + * for all *BSD operating systems. We cannot read the apps or icon + * from *BSD anyway. */ - if (inspect_apps || inspect_icon) { + if ((inspect_apps || inspect_icon) && !is_bsd) { inspect_mount_root (g, root); if (inspect_apps) -- 2.13.2
2018 Oct 04
0
[PATCH v2 3/4] inspector: Use libxml writer macros.
...uot;, BAD_CAST str)); - free (str); - - output_mountpoints (xo, root); - - output_filesystems (xo, root); - - output_drive_mappings (xo, root); - - /* We need to mount everything up in order to read out the list of - * applications and the icon, ie. everything below this point. - */ - if (inspect_apps || inspect_icon) { - inspect_mount_root (g, root); - - if (inspect_apps) - output_applications (xo, root); - - if (inspect_icon) { - /* Don't return favicon. RHEL 7 and Fedora have crappy 16x16 - * favicons in the base distro. - */ - str = guestfs_inspect_g...
2018 Nov 02
7
[PATCH v3 0/4] common/utils: Move libxml2 writer macros to a common header file.
v1 was here: https://www.redhat.com/archives/libguestfs/2018-October/msg00047.html v2 was here: https://www.redhat.com/archives/libguestfs/2018-October/msg00051.html v3: - Back to using string/string_format and attribute/attribute_format. - Add both single_element and single_element_format. - Rebased and retested. Rich.
2018 Oct 04
2
[PATCH 0/2] Use common macros to help with libxml2 writer.
Consolidate and extend the use of funky start_element() etc macros. Rich.
2018 Oct 04
6
[PATCH v2 0/4] common/utils: Move libxml2 writer macros to a common header file.
v1 was here: https://www.redhat.com/archives/libguestfs/2018-October/msg00047.html However it was broken in a few ways. First of all the documentation was broken because "/**" enhanced comments were not permitted on macros. This is fixed in the new 1/4 patch. Secondly we didn't use single_element() everywhere possible, which is fixed in the new 4/4 patch. Lastly I've
2018 Sep 19
0
[PATCH 2/2] Introduce a --key option in tools that accept keys
...}, { "no-applications", 0, 0, 0 }, @@ -135,6 +137,7 @@ main (int argc, char *argv[]) bool format_consumed = true; int c; int option_index; + struct key_store *ks = NULL; g = guestfs_create (); if (g == NULL) @@ -162,6 +165,8 @@ main (int argc, char *argv[]) inspect_apps = 0; } else if (STREQ (long_options[option_index].name, "no-icon")) { inspect_icon = 0; + } else if (STREQ (long_options[option_index].name, "key")) { + OPTION_key; } else error (EXIT_FAILURE, 0, _("unknown long o...
2012 Apr 30
5
[PATCH 0/4 v1] Remove gettextify, implement OCaml gettext.
Version 1 of the patch, for discussion, but not to be applied. It does work, but needs a lot more testing. This removes all the psychopathic gettextify cruft, and replaces it with a 99 line Makefile.am. A large win, I think. The third patch implements gettext support in the OCaml tools. The fourth patch is just for illustration. It shows the consequent changes to libguestfs.pot and the po
2018 Sep 19
5
[PATCH 0/2] RFC: --key option for tools
Hi, the following series adds a --key option in the majority of tools: this makes it possible to pass LUKS credentials programmatically, avoid the need to manually input them, or unsafely pass them via stdin. Thanks, Pino Toscano (2): mltools: create a cmdline_options struct Introduce a --key option in tools that accept keys builder/cmdline.ml | 2 +-
2012 Mar 28
2
[PATCH v2] New APIs: mount-local and umount-local using FUSE
This version doesn't crash or cause hung processes or stuck mountpoints, so that's an improvement. Rich.
2012 Mar 27
3
[PATCH 0/3] Enable FUSE support in the API via 'mount-local' call.
This patch is just for review. It enables FUSE support in the API via two new calls, 'guestfs_mount_local' and 'guestfs_umount_local'. FUSE turns out to be very easy to deadlock (necessitating that the machine be rebooted). Running the test from the third patch is usually an effective way to demonstrate this. However I have not yet managed to produce a simple reproducer that
2012 Mar 29
3
[PATCH v3] New APIs: mount-local, mount-local-run and umount-local using FUSE
This changes the proposed API slightly. Previously 'mount-local' generating a 'mounted' event when the filesystem was ready, and from the 'mounted' event you had to effectively do a fork. Now, 'mount-local' just initializes the mountpoint and you have to call 'mount-local-run' to enter the FUSE main loop. Between these calls you can do a fork or whatever
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.
2011 Jun 14
1
builder-debian libguestfs FAILED build step 4ee190628bc05f0c8fad1f6d9c3e85619a91e8b8
.../rjones/d/libguestfs/generator' CC libguestfs_la-actions.lo CC libguestfs_la-appliance.lo CC libguestfs_la-bindtests.lo CC libguestfs_la-dbdump.lo CC libguestfs_la-events.lo CC libguestfs_la-filearch.lo CC libguestfs_la-inspect.lo CC libguestfs_la-inspect_apps.lo CC libguestfs_la-inspect_fs.lo CC libguestfs_la-inspect_fs_cd.lo CC libguestfs_la-inspect_fs_unix.lo CC libguestfs_la-inspect_fs_windows.lo CC libguestfs_la-launch.lo CC libguestfs_la-listfs.lo CC libguestfs_la-match.lo CC libguestfs_la-proto.lo...
2011 Jul 12
0
builder-debian libguestfs FAILED build step c0f72f13c075a754afa7870ecf105138fba821bb
...; CC libguestfs_la-guestfs.lo CC libguestfs_la-actions.lo CC libguestfs_la-appliance.lo CC libguestfs_la-bindtests.lo CC libguestfs_la-dbdump.lo CC libguestfs_la-events.lo CC libguestfs_la-filearch.lo CC libguestfs_la-inspect.lo CC libguestfs_la-inspect_apps.lo CC libguestfs_la-inspect_fs.lo CC libguestfs_la-inspect_fs_cd.lo CC libguestfs_la-inspect_fs_unix.lo CC libguestfs_la-inspect_fs_windows.lo CC libguestfs_la-inspect_icon.lo CC libguestfs_la-launch.lo CC libguestfs_la-listfs.lo CC libguestfs_la-mat...
2011 Jun 21
1
builder-debian libguestfs FAILED build step e1e78bcef5e4654bd2456bd696840329359d35cd
...; CC libguestfs_la-guestfs.lo CC libguestfs_la-actions.lo CC libguestfs_la-appliance.lo CC libguestfs_la-bindtests.lo CC libguestfs_la-dbdump.lo CC libguestfs_la-events.lo CC libguestfs_la-filearch.lo CC libguestfs_la-inspect.lo CC libguestfs_la-inspect_apps.lo CC libguestfs_la-inspect_fs.lo CC libguestfs_la-inspect_fs_cd.lo CC libguestfs_la-inspect_fs_unix.lo CC libguestfs_la-inspect_fs_windows.lo CC libguestfs_la-launch.lo CC libguestfs_la-listfs.lo CC libguestfs_la-match.lo CC libguestfs_la-proto.lo...
2011 Jul 08
1
builder-debian libguestfs FAILED build step ebe3d8f43a0ab7f60f3c1c612f117e793179f644
...; CC libguestfs_la-guestfs.lo CC libguestfs_la-actions.lo CC libguestfs_la-appliance.lo CC libguestfs_la-bindtests.lo CC libguestfs_la-dbdump.lo CC libguestfs_la-events.lo CC libguestfs_la-filearch.lo CC libguestfs_la-inspect.lo CC libguestfs_la-inspect_apps.lo CC libguestfs_la-inspect_fs.lo CC libguestfs_la-inspect_fs_cd.lo CC libguestfs_la-inspect_fs_unix.lo CC libguestfs_la-inspect_fs_windows.lo CC libguestfs_la-inspect_icon.lo CC libguestfs_la-launch.lo CC libguestfs_la-listfs.lo CC libguestfs_la-mat...
2011 Jul 19
0
builder-debian libguestfs FAILED build step d82438431c1551610eb7d9945fa76d6387534582
...; CC libguestfs_la-guestfs.lo CC libguestfs_la-actions.lo CC libguestfs_la-appliance.lo CC libguestfs_la-bindtests.lo CC libguestfs_la-dbdump.lo CC libguestfs_la-events.lo CC libguestfs_la-filearch.lo CC libguestfs_la-inspect.lo CC libguestfs_la-inspect_apps.lo CC libguestfs_la-inspect_fs.lo CC libguestfs_la-inspect_fs_cd.lo CC libguestfs_la-inspect_fs_unix.lo CC libguestfs_la-inspect_fs_windows.lo CC libguestfs_la-inspect_icon.lo CC libguestfs_la-launch.lo CC libguestfs_la-listfs.lo CC libguestfs_la-mat...