summaryrefslogtreecommitdiffstats
path: root/fish/reopen.c
Commit message (Collapse)AuthorAgeFilesLines
* fish: Allow events to be processed in guestfish.Richard W.M. Jones2011-12-161-0/+7
| | | | | | | | Add 'event', 'list-events' and 'delete-event' commands so that event handlers can be registered, listed and deleted in guestfish. The event handler is a shell script snippet or host command. Cc: Pádraig Brady <P@draigBrady.com>
* Update FSF address.Matthew Booth2011-11-081-1/+1
|
* fish: Print input file and line number in error messages.Richard W.M. Jones2011-08-051-0/+5
| | | | | eg: *stdin*:37: libguestfs: error: luks_close: Device lukstest is busy.
* fish: Register ^C handler to cancel long transfers.Richard W.M. Jones2011-07-151-0/+4
|
* New event API (RHBZ#664558).Richard W.M. Jones2011-03-151-1/+2
| | | | | | | | | | | | | This API allows more than one callback to be registered for each event, makes it possible to call the API from other languages, and allows [nearly all] log, debug and trace messages to be rerouted from stderr. An older version of this API was discussed on the mailing list here: https://www.redhat.com/archives/libguestfs/2010-December/msg00081.html https://www.redhat.com/archives/libguestfs/2011-January/msg00012.html This also updates guestfish to use the new API for its progress bars.
* fish: Change 'int argc' to 'size_t argc' throughout.Richard W.M. Jones2010-10-211-1/+1
|
* generator: Generate guestfish-only commands.Richard W.M. Jones2010-09-181-1/+1
| | | | | | The guestfish-only commands such as 'alloc' and 'edit' are now generated from one place in the generator instead of being spread around ad-hoc in the C code.
* fish: Implement progress bars in guestfish.Richard Jones2010-09-011-0/+3
| | | | | | | | | | | | | | | | | The progress bar is updated 3 times per second, and is not displayed at all for operations which take less than two seconds. You can disable progress bars by using the flag --no-progress-bars, and you can enable progress bars in non-interactive sessions with the flag --progress-bars. A good way to test this is to use the following command: guestfish --progress-bars \ -N disk:10G \ zero-device /dev/sda (adjust "10G" to get different lengths of time).
* fish: In 'reopen' copy trace setting to new handle.Richard Jones2010-05-081-0/+4
|
* Guestfish: Add 'reopen' command to reopen the libguestfs handle.Richard W.M. Jones2009-07-111-0/+70