Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | inspector: Fix comment in virt-inspector.rng. | Richard W.M. Jones | 2011-06-28 | 1 | -2/+2 | |
| | | | | | The comment referred to the command line syntax of the old virt-inspector. | |||||
* | inspection: Remove note about root device string. | Richard W.M. Jones | 2011-06-28 | 1 | -60/+0 | |
| | | | | | | | This is a fairly pointless note/warning since (a) you can't use the API if you don't pass a root device string and (b) the code gives you a good error message if you pass something that is not a root device string. | |||||
* | guestfs.h: Tidy up *_argv structs and other #defines. | Richard W.M. Jones | 2011-06-28 | 1 | -6/+18 | |
| | ||||||
* | Revert "Lib.pm: unknown filesystem label SWAP-sda2 (RHBZ#666578)" | Richard W.M. Jones | 2011-06-28 | 1 | -1/+1 | |
| | | | | This reverts commit 5cab0d6c807d8a3bf9690375c663d11a10e21656. | |||||
* | New API: mount-9p lets you mount 9p filesystems (RHBZ#714981). | Richard W.M. Jones | 2011-06-22 | 3 | -1/+69 | |
| | | | | The updated patch makes 'options' into an optional parameter. | |||||
* | New API: list-9p lists 9p filesystem mount tags (RHBZ#714981). | Richard W.M. Jones | 2011-06-22 | 5 | -1/+180 | |
| | ||||||
* | trace: Print empty list correctly. | Richard W.M. Jones | 2011-06-22 | 1 | -3/+5 | |
| | | | | | | | Empty lists returned by RStringList and RHashtable functions were incorrectly printed as [""]. Fix this so they are printed as [] instead. | |||||
* | Version 1.11.11.1.11.11 | Richard W.M. Jones | 2011-06-21 | 17 | -31/+28 | |
| | ||||||
* | Enable deprecated option only with gcc >= 4.5. | Richard W.M. Jones | 2011-06-20 | 1 | -1/+1 | |
| | | | | | | | Before gcc 4.5, the deprecated option did not take the optional string argument (see [1]). This caused compilation to fail with gcc < 4.5. [1] http://gcc.gnu.org/gcc-4.5/changes.html | |||||
* | perl: Ignore MYMETA.yml. | Richard W.M. Jones | 2011-06-18 | 1 | -0/+1 | |
| | | | | This file is created by one of the build tools used by Perl 5.14. | |||||
* | todo: Idea for interactive disk creator program. | Richard W.M. Jones | 2011-06-18 | 1 | -1/+6 | |
| | ||||||
* | perl: Don't use qw() as parentheses. | Richard W.M. Jones | 2011-06-18 | 1 | -1/+1 | |
| | | | | | | In Perl 5.14: Use of qw(...) as parentheses is deprecated at perl/blib/lib/Sys/Guestfs/Lib.pm line 1111. | |||||
* | generator: Rewrite UUIDs that begin with zero byte. | Richard W.M. Jones | 2011-06-13 | 1 | -0/+8 | |
| | | | | | | | In util-linux <= 2.19, mkswap -U cannot handle the first byte of the UUID being zero, so we artificially rewrite such UUIDs. See: http://article.gmane.org/gmane.linux.utilities.util-linux-ng/4273 | |||||
* | Version 1.11.10.1.11.10 | Richard W.M. Jones | 2011-06-10 | 17 | -243/+395 | |
| | ||||||
* | build: include <string.h> for src/match.c's use of strlen | Jim Meyering | 2011-06-10 | 1 | -0/+1 | |
| | ||||||
* | bootstrap: use --libtool | Jim Meyering | 2011-06-10 | 1 | -0/+1 | |
| | ||||||
* | build: update to latest gnulib | Jim Meyering | 2011-06-10 | 4 | -11/+67 | |
| | | | | | * .gnulib: Update submodule to latest. * daemon/m4/gnulib-cache.m4: Regenerate. | |||||
* | daemon: Keep Coverity happy by ignoring some return values. | Richard W.M. Jones | 2011-06-09 | 3 | -7/+17 | |
| | ||||||
* | Coverity: Don't return freed pointers from command* along error path. | Richard W.M. Jones | 2011-06-09 | 1 | -2/+14 | |
| | | | | | | | | | | If the external command failed to run, we could free up the allocated *stdoutput and *stderror pointers, but then return those freed pointers to the caller. The caller usually tries to print and free *stderror, so this is a serious error. Instead, return *stdoutput as NULL, and *stderror pointing to a generic error message. | |||||
* | Coverity: Missing return on error path. | Richard W.M. Jones | 2011-06-09 | 1 | -0/+1 | |
| | ||||||
* | Coverity: Ensure fp is closed along all error paths. | Richard W.M. Jones | 2011-06-09 | 1 | -4/+6 | |
| | ||||||
* | Coverity: Close directory handle along error paths. | Richard W.M. Jones | 2011-06-09 | 1 | -0/+2 | |
| | ||||||
* | Coverity: Don't leak argv arrays. | Richard W.M. Jones | 2011-06-09 | 1 | -0/+4 | |
| | ||||||
* | Coverity: Don't leak error strings. | Richard W.M. Jones | 2011-06-09 | 5 | -3/+14 | |
| | ||||||
* | Coverity: Check return value of sysroot_path. | Richard W.M. Jones | 2011-06-09 | 1 | -1/+1 | |
| | | | | For some reason we were checking the parameter! | |||||
* | Coverity: Check return value of malloc. | Richard W.M. Jones | 2011-06-09 | 1 | -0/+4 | |
| | ||||||
* | Coverity: Don't close fd_cwd if fd_cwd == -1. | Richard W.M. Jones | 2011-06-09 | 1 | -2/+5 | |
| | ||||||
* | Coverity: Avoid calling sort_strings (NULL, 0) on empty list. | Richard W.M. Jones | 2011-06-09 | 1 | -2/+3 | |
| | ||||||
* | Coverity: Don't call free_strings (NULL). | Richard W.M. Jones | 2011-06-09 | 1 | -1/+0 | |
| | ||||||
* | Coverity: Remove unreachable code. | Richard W.M. Jones | 2011-06-09 | 4 | -12/+0 | |
| | ||||||
* | init: Remove timeout in udevadm settle command. | Richard W.M. Jones | 2011-06-08 | 1 | -1/+1 | |
| | | | | | | | | | | The given timeout (10s) was too low if the appliance was running slowly, which caused a cascade of other failures during tests. Note that in udev-171 and above on Fedora, /sbin/start_udev no longer exists, so now we are using this manual method to start udevd. | |||||
* | protocol: Enhance "unexpected end of file when reading from daemon" error. | Richard W.M. Jones | 2011-06-07 | 1 | -2/+21 | |
| | | | | | Make this error more informative, since it is a common error when the appliance fails to start up. | |||||
* | Version 1.11.9.1.11.9 | Richard W.M. Jones | 2011-06-04 | 17 | -204/+495 | |
| | ||||||
* | Only include date, not time, in BUGS file. | Richard W.M. Jones | 2011-06-04 | 1 | -1/+1 | |
| | | | | This is so the file does not change so often when using 'make dist'. | |||||
* | Remove dependency diagram, since it is very out of date. | Richard W.M. Jones | 2011-06-04 | 4 | -128/+0 | |
| | ||||||
* | virt-ls: Add virt-ls -lR option for complex file iteration. | Richard W.M. Jones | 2011-06-04 | 4 | -36/+1136 | |
| | ||||||
* | virt-ls: Refactor mode selection code. | Richard W.M. Jones | 2011-06-04 | 1 | -77/+123 | |
| | | | | This is just code motion. | |||||
* | virt-ls: Small fix for output of --help option. | Richard W.M. Jones | 2011-06-04 | 1 | -1/+1 | |
| | ||||||
* | Ubuntu: Fix compilation of virt-resize if old libguestfs already installed. | Richard W.M. Jones | 2011-06-04 | 1 | -1/+5 | |
| | ||||||
* | recipes: in tr command \000 should be \0 | Richard W.M. Jones | 2011-06-03 | 1 | -1/+1 | |
| | ||||||
* | daemon: Fix error message. | Nikita A Menkovich | 2011-05-20 | 1 | -1/+1 | |
| | ||||||
* | todo: Document thoughts on visiting files. | Richard W.M. Jones | 2011-05-20 | 1 | -0/+40 | |
| | ||||||
* | debian: Add build dependencies: dpkg-dev, devscripts, gperf. | Nikita A Menkovich | 2011-05-20 | 1 | -1/+2 | |
| | ||||||
* | daemon: Make sysroot_len be size_t instead of int. | Richard W.M. Jones | 2011-05-19 | 2 | -2/+2 | |
| | ||||||
* | todo: Remove event log parsing - done. | Richard W.M. Jones | 2011-05-18 | 1 | -10/+0 | |
| | ||||||
* | build: Install guestfs-recipes.1.html on website. | Richard W.M. Jones | 2011-05-18 | 1 | -0/+1 | |
| | | | | This updates commit f2c7df589c7e161f33b46d05a943b5489dc2cffe. | |||||
* | Add new guestfs-rescue(1) man page with recipes. | Richard W.M. Jones | 2011-05-18 | 8 | -4/+447 | |
| | ||||||
* | Remove guestfish recipes. | Richard W.M. Jones | 2011-05-18 | 47 | -497/+1 | |
| | | | | | These were out of date. We will replace them with more up to date information. | |||||
* | guestfs-examples(3): Remove link to OCaml homepage. | Richard W.M. Jones | 2011-05-18 | 1 | -2/+1 | |
| | ||||||
* | Version 1.11.8.1.11.8 | Richard W.M. Jones | 2011-05-18 | 19 | -15469/+15926 | |
| |