Displaying 2 results from an estimated 2 matches for "1f0a4c1f6".
2017 Apr 04
2
[PATCH] builder: Allow GnuPG v2 or v1 to be used (RHBZ#1438939).
...+B<NB:> Do not confuse C<gpg2> with C<gpgv2>. The latter is for
+B<v>erifying signatures only, and will not work as the gnupg binary.
+
=item liblzma
Optional. If available, virt-builder will use this library
diff --git a/m4/guestfs_progs.m4 b/m4/guestfs_progs.m4
index 1f0a4c1f6..ec1f400e9 100644
--- a/m4/guestfs_progs.m4
+++ b/m4/guestfs_progs.m4
@@ -114,6 +114,25 @@ if test "x$YACC" = "xyacc"; then
AC_MSG_FAILURE([GNU 'bison' is required (yacc won't work).])
fi
+dnl Check for GnuPG, used by virt-builder. This is just the
+dnl defa...
2017 Oct 06
3
[PATCH v2 0/2] lib: Allow db_dump package to be a weak dependency
Previously posted:
https://www.redhat.com/archives/libguestfs/2017-October/msg00032.html
This takes a completely different approach. It turns out that POSIX /
the shell already defines a special exit code 127 for ‘command not
found’. We can make a small adjustment to lib/command.c to return
this exit code in that case.
Then we just have to modify the db_dump code to test for this exit
code.
I