summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.3.7 - note: fixes a segfault in guestfish 1.3.6.1.3.7Richard Jones2010-04-2313-5570/+5629
|
* todo docs: Discuss shrinking filesystems and specifying sizes in guestfish.Richard Jones2010-04-231-0/+17
|
* New API: checksums-out for checksumming many files.Richard Jones2010-04-233-2/+104
| | | | Useful API for verifying the integrity of virtual machines.
* generator: Update docs for checksum to point to checksum-device.Richard Jones2010-04-231-1/+3
|
* daemon: Split out checksum type to program name mapping into function.Richard Jones2010-04-231-14/+22
| | | | This shouldn't change the semantics of the program.
* fish: Fix segfault in '-a' option.Richard Jones2010-04-231-1/+2
| | | | | This fixes a segfault in the guestfish -a option which you would get when using guestfish 1.3.6.
* todo docs: Integrate with host intrusion detection systems.Richard Jones2010-04-231-0/+12
|
* todo docs: Mapping filesystems to and from disk blocks.Richard Jones2010-04-231-0/+10
|
* Version 1.3.6.1.3.6Richard Jones2010-04-2213-1990/+2044
|
* fish: Add -N option for making prepared disk images.Richard Jones2010-04-2217-152/+532
| | | | | | | | | | | | | | | | | Previously you might have typed: $ guestfish ><fs> alloc test1.img 100M ><fs> run ><fs> part-disk /dev/sda mbr ><fs> mkfs ext4 /dev/sda1 now you can do the same with: $ guestfish -N fs:ext4 Some tests have also been updated to use this new functionality.
* fish docs: Be consistent about using I<-..> for options.Richard Jones2010-04-221-4/+4
|
* fish docs: Use L</...> for internal links in the man page.Richard Jones2010-04-221-6/+6
|
* Whitelist the loop kernel moduleMatthew Booth2010-04-221-0/+2
| | | | loop is sometimes a module, for example on RHEL 5.
* Don't die during inspection if rpm -qa or dpkg-query failsMatthew Booth2010-04-211-8/+20
| | | | | If a problem in the package database prevented package enumeration from working, inspection would die. This change makes it emit a warning and continue.
* Don't die during inspection if initrd doesn't existMatthew Booth2010-04-211-1/+1
| | | | | This fixes a problem where inspection would die if grub.conf referenced a non-existent initrd. Just return an empty initrd instead.
* Add zfs-fuse (ZFS via FUSE) support to the appliance.Richard Jones2010-04-201-0/+1
|
* Remove checks for Test::Pod and Test::Pod::Coverage.Richard Jones2010-04-201-1/+1
| | | | | | | Although these modules are optionally used by the Perl tests, they aren't necessary and won't break the build if they are not there. These modules aren't available in RHEL 5. Therefore remove these checks.
* Updated Spanish translations (RHBZ#584038).Daniel Cabrera2010-04-201-576/+1320
|
* Check user doesn't run configure, make or make check as root.Richard Jones2010-04-202-0/+22
| | | | (Thanks to Yufang Zhang for helping to debug this issue).
* Replace 'dd' in tests with use of guestfish 'sparse' command.Richard Jones2010-04-203-6/+5
| | | | | | | 'dd' is a very inefficient way to create files. 'truncate' is better, but unfortunately that command is not available in RHEL 5. So use the guestfish 'sparse' command instead (which also avoids allocating disk space).
* Document new version numbering policy.Richard Jones2010-04-201-0/+63
| | | | | | | | See discussion on mailing list: https://www.redhat.com/archives/libguestfs/2010-April/msg00005.html https://www.redhat.com/archives/libguestfs/2010-April/msg00057.html https://www.redhat.com/archives/libguestfs/2010-April/msg00058.html
* Document umask (RHBZ#582548, RHBZ#583554).Richard Jones2010-04-191-1/+18
|
* docs: Clarify documentation for mknod (RHBZ#582948).Richard Jones2010-04-191-0/+8
|
* Update PO files.1.3.5Richard Jones2010-04-1912-5101/+5291
|
* Prepare for version 1.3.5.Richard Jones2010-04-191-1/+1
|
* New APIs: base64-in and base64-out for uploading/downloading base64 content.Richard Jones2010-04-198-24/+174
|
* New API: debug-upload (not a formal part of the API/ABI).Richard Jones2010-04-193-10/+94
| | | | | | | | | | | | Allow arbitrary files to be uploaded into the appliance, but only when --enable-debug-command is enabled. This lets you run shell scripts, like this: ><fs> debug-upload -<<EOF /tmp/script.sh 0700 #!/bin/sh - # ... EOF ><fs> debug sh "/tmp/script.sh"
* fish: Allow -<<END as a syntax for uploading "heredocs".Richard Jones2010-04-194-10/+189
| | | | | | | | | | | | For example: ><fs> upload -<<END /foo some data some more data END ><fs> cat /foo some data some more data
* todo docs: Feature for base64 uploads and scripts.Richard Jones2010-04-191-1/+24
|
* docs: Add virt-resize(1) link to guestfish(1) manpage.Richard Jones2010-04-191-0/+1
|
* Version 1.3.41.3.4Richard Jones2010-04-1713-6353/+5795
|
* todo documentation: Idea: List, mount filesystems by UUID and label.Richard Jones2010-04-171-1/+13
|
* todo documentation: remove 'virt-grow/shrink', see virt-resizeRichard Jones2010-04-171-7/+0
|
* todo documentation: virt-rescue now uses $TERM from library, remove from ↵Richard Jones2010-04-171-6/+0
| | | | todo list
* todo documentation: Remove old section on PPC bugs.Richard Jones2010-04-171-17/+0
| | | | | No one cares for PPC, and if they do they should file these as bugs in the bug tracker.
* todo documentation: Remove old ideas for Python bindings.Richard Jones2010-04-171-6/+0
|
* Documentation: Use 'g' instead of 'handle' in documentation.Richard Jones2010-04-172-48/+53
| | | | | By convention we use 'g' for handles. Copy this convention through to all the documentation.
* In guestfs(3), unmount "/" directory in the example.Richard Jones2010-04-171-0/+1
|
* Add compilation/linking example to guestfs(3) man page.Richard Jones2010-04-171-0/+4
|
* generator: Use shortname in check_state() call.Richard Jones2010-04-171-1/+2
| | | | Saves a tiny bit of space in the library.
* Build top-level directories in a more logical order.Richard Jones2010-04-171-14/+20
|
* Rerun generator if images/test.iso does not exist or has been updated.Richard Jones2010-04-171-1/+4
| | | | | The MD5 hash of this file is embedded in the output of the generator.
* Fix upload losing synchronization if root not mounted (RHBZ#576879).Richard Jones2010-04-1711-64/+92
| | | | | | | | | | | | Modify the generator so that it can correctly handle early cancellation for Pathname|Device|.. parameters. This fixes the upload command, but consequently we need to fix the parameters for tar_in and t?z_in commands. This should also mean that 'win:' can now be used as the second argument of tar_in and t?z_in commands in guestfish, whereas previously this wouldn't have worked. Adds a regression test for the original problem.
* generator: Fix typo in a comment.Richard Jones2010-04-171-1/+1
|
* Improved checking, documentation of modes (RHBZ#582901, RHBZ#582929).Richard Jones2010-04-175-6/+42
| | | | | | | | | | | chmod: Disallow negative mode, document mode affected by umask. mkdir-mode: Disallow negative mode, document that filesystems may interpret the mode in different ways. mknod: Disallow negative mode, document mode affected by umask. umask: Check the range of umask mask value carefully.
* fish: Autocomplete 'sparse' command (RHBZ#582899).Richard Jones2010-04-171-0/+1
| | | | | I also rechecked the list of built-in commands against the actual commands to make sure no others were omitted.
* New API: get-umask, returns the current umask (RHBZ#582891).Richard Jones2010-04-173-2/+28
|
* Add a build test for the 'umask' command.Richard Jones2010-04-171-3/+2
|
* fish: Print output from some commands in octal/hex as approp. (RHBZ#583242).Richard Jones2010-04-172-6/+36
|
* Documentation: lvcreate should say 'logical volume' (RHBZ#582953)Richard Jones2010-04-171-2/+2
|