summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Update release notes.Richard W.M. Jones2011-07-151-1/+16
|
* Update API support.Richard W.M. Jones2011-07-154-0/+1304
|
* ruby: Add binding for guestfs_user_cancel.Richard W.M. Jones2011-07-151-0/+22
|
* perl: Add binding for guestfs_user_cancel.Richard W.M. Jones2011-07-151-0/+11
|
* ocaml: Add binding for guestfs_user_cancel.Richard W.M. Jones2011-07-152-0/+19
|
* fish: Register ^C handler to cancel long transfers.Richard W.M. Jones2011-07-152-1/+25
|
* fish: Add is_interactive flag.Richard W.M. Jones2011-07-151-2/+9
| | | | | Decide early (before launch) if this is going to be an interactive session, and set the is_interactive flag.
* Add user cancellation to the C API.Richard W.M. Jones2011-07-158-7/+413
| | | | | | | | | This allows long transfers (FileIn and FileOut operations) to be cancelled by calling the signal and thread safe guestfs_user_cancel function. Most of this commit consists of a multithreaded program that tests user cancellation of uploads and downloads.
* New APIs: set-pgroup, get-pgroupRichard W.M. Jones2011-07-154-6/+45
| | | | | | | | | | | If the pgroup flag is set in the handle, then the qemu and recovery subprocesses are placed in separate process groups. The default is false. The purpose for setting up a process group is that ^C will not be passed from the main process down to these processes (killing them). This allows ^C and other keyboard events to be caught and handled in the main process.
* guestfs.h: Add missing extern keyword before event functions.Richard W.M. Jones2011-07-151-6/+6
|
* debian: New sub-package: guestfsd.Nikita A Menkovich2011-07-144-0/+15
| | | | | | This patch adds guestfsd debian package to the build. The daemon can be installed in virtualization clients to enable libguestfs live access.
* New API: write-appendRichard W.M. Jones2011-07-143-3/+47
| | | | Append content to the end of a file.
* fish: Handle backslash escapes in guestfish double-quoted strings.Richard W.M. Jones2011-07-144-4/+221
|
* build: Add ./configure --enable-install-daemonRichard W.M. Jones2011-07-142-0/+15
| | | | | | | | If enabled, then the daemon will be installed in $sbindir (eg. /usr/sbin/guestfsd). The default is off, as now. This option should be used by packagers when building the libguestfs live service.
* Version 1.11.17.1.11.17Richard W.M. Jones2011-07-1419-16323/+16764
|
* resize: Clarify examples in the man page.Richard W.M. Jones2011-07-141-3/+27
|
* resize: Add btrfs support to virt-resize (RHBZ#721275).Richard W.M. Jones2011-07-142-5/+24
|
* New API: btrfs-filesystem-resize (RHBZ#721160).Richard W.M. Jones2011-07-145-1/+110
| | | | This resizes a btrfs filesystem.
* docs: resize: Not just limited to resizing filesystems in partitions.Richard W.M. Jones2011-07-141-4/+2
| | | | If you use --LV-expand then filesystems in LVs can be resized too.
* mkfs: Don't die if mke2fs is not available.Richard W.M. Jones2011-07-141-4/+4
| | | | Allow other types of filesystems to be created.
* Version 1.11.16.1.11.16Richard W.M. Jones2011-07-1319-3354/+3360
|
* Update release notes.Richard W.M. Jones2011-07-131-3/+20
|
* Refresh README file.Richard W.M. Jones2011-07-131-75/+79
| | | | | | | Update and verify the list of requirements, by checking it against both configure.ac and the Fedora specfile. Remove some obsolete sections that covered historical ground.
* appliance: Add systemd to get /sbin/reboot for virt-rescue (RHBZ#661280).Richard W.M. Jones2011-07-132-5/+1
|
* docs: Update API support.Richard W.M. Jones2011-07-134-0/+1307
|
* virt-resize: Arrange options in man page in alphabetical order.Richard W.M. Jones2011-07-131-95/+95
|
* virt-resize: Add --ntfsresize-force option.Richard W.M. Jones2011-07-132-3/+14
| | | | | Use the non-deprecated g#ntfsresize_opts API call, and also add the --ntfsresize-force option for forcing resize.
* Version 1.11.15.1.11.15Richard W.M. Jones2011-07-1219-12856/+13619
|
* TODO: Attach method for disconnected operation.Richard W.M. Jones2011-07-121-0/+12
|
* part-get-bootable: Fix when partitions are missing or unordered (RHBZ#602997).Richard W.M. Jones2011-07-123-4/+102
|
* New API: ntfsresize-opts (RHBZ#685009).Richard W.M. Jones2011-07-123-21/+69
| | | | | | This is a more comprehensive fix for RHBZ#685009. Add a new API which allows the --force flag to be passed, allowing multiple NTFS resize operations in a single session.
* Document that ntfsresize cannot be used multiple times (RHBZ#685009).Richard W.M. Jones2011-07-121-0/+9
|
* fish: Show device mapper device in tab completion (RHBZ#688062).Richard W.M. Jones2011-07-121-0/+3
| | | | | | | | | With this change: ><fs> luks-open /dev/vda1 lukstest Enter key or passphrase ("key"): ><fs> ll /dev/<TAB> /dev/mapper/lukstest /dev/vda /dev/vda1
* New API: list-dm-devices (RHBZ#688062).Richard W.M. Jones2011-07-125-3/+209
| | | | List device mapper devices.
* Don't mention /dev/mapper in docs for vg-activate{,-all} commands.Richard W.M. Jones2011-07-121-6/+0
| | | | | | | Although vg-activate and vg-activate-all do make /dev/mapper/VG-LV devices internally, we always prefer to use the /dev/VG/LV format and we return this format where possible. Therefore don't mention /dev/mapper in this documentation.
* protocol: Force optargs_bitmask to be passed as 0 for non-opt actions.Richard W.M. Jones2011-07-121-2/+13
| | | | | | If the action doesn't take optional arguments, nevertheless force the optargs_bitmask field in the header to be passed as 0, and give an error if not.
* list-9p: Avoid double free along error path.Richard W.M. Jones2011-07-121-1/+0
| | | | This updates commit 5f10c3350338bbca735a74db26f98da968957bd9.
* Version 1.11.14.1.11.14Richard W.M. Jones2011-07-0619-4068/+4151
|
* mkfs-opts: Don't test optional arguments in this test.Richard W.M. Jones2011-07-061-1/+1
|
* mkfs-opts: Add optional sectorsize parameter.Nikita A Menkovich2011-07-062-5/+27
|
* capitests: Allow tests to properly test optional arguments.Richard W.M. Jones2011-07-061-13/+31
| | | | | | For optional arguments, you can now specify empty string to mean no argument, except for String optional arguments where you must use "NOARG" (empty string meaning a supplied empty string argument).
* Implement inode option to mkfs_opts command.Nikita A Menkovich2011-07-042-5/+29
| | | | | | | This is needed because older versions of grub(for example in centos) do not understand filesystems created with newer version of e2fsprogs. By default in e2fsprogs 1.4+ creates partitions with 256 bit inode size, and grub expect 128 bit size.
* Version 1.11.13.1.11.13Richard W.M. Jones2011-06-3019-5018/+5155
|
* Add caution subdirectory containing safety and liveness tests.Richard W.M. Jones2011-06-305-1/+137
| | | | | Not that I'm paranoid about qemu breaking snapshots of anything like that ...
* Update release notes.Richard W.M. Jones2011-06-301-0/+90
|
* inspector: Update documentation to cover <icon> element.Richard W.M. Jones2011-06-301-0/+22
| | | | This updates commit 7f16c346bbeba2f2fe3c31ccb85158178a284d84.
* python: Add explicit g.close() method (RHBZ#717786).Richard W.M. Jones2011-06-302-0/+85
|
* docs: Update API support.Richard W.M. Jones2011-06-2945-10/+18672
|
* Version 1.11.12.1.11.12Richard W.M. Jones2011-06-2819-14438/+15826
|
* fish: Add 'display' command for displaying graphical files.Richard W.M. Jones2011-06-286-0/+120
|