summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* docs: Remove ref to L</add-drive-opts> wrongly copied into some man pages.Richard W.M. Jones2010-11-275-10/+5
|
* Update API support.Richard W.M. Jones2010-11-2618-0/+7001
|
* Updated RELEASE-NOTES file.Richard W.M. Jones2010-11-261-0/+113
|
* Version 1.7.16.1.7.16Richard W.M. Jones2010-11-2616-7129/+7129
|
* fish: Don't use external pod2text program.Richard W.M. Jones2010-11-264-40/+21
| | | | | | | This removes the dependency from guestfish to the external pod2text program (and hence the final dependency on perl for guestfish). This is done by storing the formatted pod2text output in guestfish as the help text.
* generator: More options for internal pod2text generator.Richard W.M. Jones2010-11-263-14/+30
| | | | | | | | Allow extra width, and trimming options. This necessitates a change in the memoized format. To avoid causing crashes if a new generator loads the old format, also change the filename of the memo file.
* libtool fix: Don't do fix if there was no -o option to libtool.Richard W.M. Jones2010-11-261-5/+8
| | | | | | For example if libtool is being run as 'libtool --mode=execute ...' This fixes commit 4cf4f2b66f850bb39c5bf29d3cd12ada9114d67e.
* Version 1.7.15.1.7.15Richard W.M. Jones2010-11-2617-594/+831
|
* build: Add several missing shell scripts to dist.Richard W.M. Jones2010-11-261-1/+5
|
* Remove dependency_libs from libtool *.la files.Richard W.M. Jones2010-11-263-1/+64
| | | | | | | | Add a libtool wrapper which kills dependency_libs in libtool *.la files, to ensure that libtool doesn't add unnecessary extra libraries when linking. See http://lists.fedoraproject.org/pipermail/devel/2010-November/146343.html
* df: Missing direct dependency on libvirt.Richard W.M. Jones2010-11-261-2/+5
| | | | | virt-df has an (optional) direct dependency on libvirt. Because of libtool's over-linking behaviour this was being missed.
* rescue: Rewrite virt-rescue in C.Richard W.M. Jones2010-11-2610-133/+737
|
* Update HACKING description of tools/ subdirectory.Richard W.M. Jones2010-11-261-1/+1
| | | | This fixes commit 18374b5b7d3154e0b8b8a07e3590f6eee762b58e.
* daemon: Close leaked file descriptor along checksum error path (RHBZ#657499).Richard W.M. Jones2010-11-261-1/+3
|
* Version 1.7.14.1.7.14Richard W.M. Jones2010-11-2517-1970/+2398
|
* df: Rewrite virt-df in C.Richard W.M. Jones2010-11-2517-676/+1584
| | | | | | | | | | | | I have diffed the output from the original virt-df with this new version, and they agree very closely. Some differences: - Old virt-df have a divide-by-zero error in cases where the number of used inodes was 0. New virt-df fixes this. - New virt-df uses gnulib human_readable library which displays numbers to 3 significant figures for -h output (old version used an ad hoc function).
* Export private function 'guestfs___for_each_disk' for use by virt-df.Richard W.M. Jones2010-11-252-45/+91
| | | | | | This private function (not part of the API) allows us to iterate over disks from a guest, avoiding the business of writing all the XPath code yet again.
* fish: Keep device names in options drives list.Richard W.M. Jones2010-11-253-9/+27
| | | | | | | In the 'struct drv *drvs' structure, keep a list of the device name(s) for each added drive or guest. The device name is the canonical name as that drive would be known inside libguestfs, eg. "/dev/sda"
* Fix memory leak (xptype XPath obj) in add-domain API.Richard W.M. Jones2010-11-251-0/+1
|
* Version 1.7.13.1.7.13Richard W.M. Jones2010-11-2417-1259/+1474
|
* build: Remove some non-existent files from CLEANFILES.Richard W.M. Jones2010-11-241-4/+2
|
* ruby: Translate C examples into Ruby and include documentation.Richard W.M. Jones2010-11-2412-4/+242
|
* python: Translate C examples into Python and include documentation.Richard W.M. Jones2010-11-2411-7/+241
|
* ocaml: Translate C examples into OCaml and include documentation.Richard W.M. Jones2010-11-2410-50/+294
|
* docs: Standard C examples, and guestfs-examples(3) man page.Richard W.M. Jones2010-11-2411-278/+371
|
* build: Centralize all POD manipulation in 'podwrapper.sh' script.Richard W.M. Jones2010-11-2413-204/+286
|
* build: Rename bugs-in-changelog.shRichard W.M. Jones2010-11-241-2/+2
|
* build: Rename update-bugs as update-bugs.sh.Richard W.M. Jones2010-11-242-3/+3
|
* generator: Remove unused variable.Richard W.M. Jones2010-11-241-1/+1
|
* fuse: Add note in test about how to debug guestmount.Richard W.M. Jones2010-11-241-0/+2
|
* build: virt-make-fs requires String::ShellQuote, add to configure.Richard W.M. Jones2010-11-242-1/+3
|
* regressions: Fix test-launch-race to work in non-supermin case.Richard W.M. Jones2010-11-241-2/+6
|
* daemon: blkid cache is at a different location on Debian.Richard W.M. Jones2010-11-241-1/+2
| | | | Remove both possible cache locations.
* debian: Include ntfsprogs in the appliance.Richard W.M. Jones2010-11-241-0/+1
| | | | | This allows us to build NTFS filesystems at least. Mounting NTFS doesn't work in Debian because of a problem with debirf.
* inspect: Detect if db_dump and db_load programs are available.Richard W.M. Jones2010-11-244-2/+21
| | | | | | If db_dump is not available then disable RPM application detection. Note these utilities have odd names on Debian.
* build: Move po4a detection up near other program detection.Richard W.M. Jones2010-11-241-4/+4
|
* daemon: In sfdisk call blockdev --rereadpt with device name.Richard W.M. Jones2010-11-231-1/+1
|
* ocaml: Fix some unused parameter warnings in OCaml bindings.Richard W.M. Jones2010-11-233-2/+13
|
* Update README to reflect Perl modules that are really still required.Richard W.M. Jones2010-11-231-2/+7
|
* build: XML::Writer Perl module is no longer required.Richard W.M. Jones2010-11-231-1/+1
|
* filesystems: Fix command synopsis in usage message.Richard W.M. Jones2010-11-231-2/+2
| | | | This updates commit fbc2555903be8c88ad9430d871cf0d27c8fded1e.
* Version 1.7.12.1.7.12Richard W.M. Jones2010-11-2317-2086/+2819
|
* fish: Link to virt-inspector from guestfish man page.Richard W.M. Jones2010-11-231-0/+1
|
* New tool: virt-filesystemsRichard W.M. Jones2010-11-2317-25/+1390
| | | | | | | | This tool replaces virt-list-filesystems and virt-list-partitions with a new tool written in C with a more uniform command line structure and output. This existing Perl tools are deprecated but remain indefinitely.
* ls: Rewrite virt-ls in C.Richard W.M. Jones2010-11-2311-278/+675
|
* resize: Fix canonical device function (RHBZ#655554).Richard W.M. Jones2010-11-231-1/+1
|
* inspector: Make whole disk paths canonical (RHBZ#655554).Richard W.M. Jones2010-11-231-1/+1
|
* inspector: Fix documentation of -x option in usage.Richard W.M. Jones2010-11-221-1/+1
| | | | This updates commit c5cb65f0aac3298e634b183f73fda6644a158018.
* cat: Fix documentation of -x option in usage.Richard W.M. Jones2010-11-221-1/+1
| | | | This updates commit d29e9a552f5823d1d8cb8d4962cb1301bbf60b0e.
* cat: Continue after encountering an error.Richard W.M. Jones2010-11-221-2/+4
|