Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update FSF address. | Matthew Booth | 2011-11-09 | 41 | -41/+41 |
| | | | | (cherry picked from commit 04ea1375c55aa67df4e7fc61dbb534111767f3b6) | ||||
* | fish: Use size_t instead of int when counting strings. | Richard W.M. Jones | 2011-11-09 | 1 | -4/+4 |
| | | | | (cherry picked from commit b4da051d54a1597c7d8db8880d21a52265a6172e) | ||||
* | fish and other tools: -d option uses readonlydisk="read" (RHBZ#747290). | Richard W.M. Jones | 2011-10-26 | 1 | -0/+3 |
| | | | | | | Tools like virt-edit would not be able to edit disks marked as <readonly/> in the libvirt XML. It's not clear if this is a bug or a feature. | ||||
* | Flush stdout for progress bars used by guestfish, virt-resize. | Richard W.M. Jones | 2011-10-26 | 1 | -0/+1 |
| | |||||
* | valgrind: guestfish -i: free strings before exit. | Richard W.M. Jones | 2011-10-19 | 1 | -0/+2 |
| | | | | This isn't really necessary, but it keeps valgrind happy. | ||||
* | fish: docs: note how to clean up the remote process properly. | Richard W.M. Jones | 2011-10-13 | 1 | -5/+6 |
| | | | | | | | Killing it is always a bad idea, because the qemu subprocess will be left hanging around. The best thing is to send the exit command. This also makes the change to virt-sysprep. | ||||
* | fish: Close guestfs handle explicitly before exiting. | Richard W.M. Jones | 2011-10-13 | 1 | -0/+2 |
| | | | | | | NOTE this is just a cleanup. It is NOT necessary for correctness, since libguestfs itself is correctly closing the handle in the exit handler. | ||||
* | New tool: virt-sysprep: system preparation for guests. | Richard W.M. Jones | 2011-10-08 | 1 | -0/+1 |
| | |||||
* | fish: Add man page section on calling guestfish remote robustly from bash. | Richard W.M. Jones | 2011-10-07 | 1 | -0/+32 |
| | |||||
* | New tool: virt-alignment-scan to check alignment of partitions. | Richard W.M. Jones | 2011-10-05 | 1 | -0/+1 |
| | |||||
* | New tool: virt-sparsify to make disk images sparse. | Richard W.M. Jones | 2011-10-04 | 1 | -0/+1 |
| | |||||
* | man pages: Add a standard EXIT STATUS section to most pages. | Richard W.M. Jones | 2011-08-27 | 1 | -1/+1 |
| | |||||
* | progress: Make default UTF-8 progress bar less black. | Richard W.M. Jones | 2011-08-26 | 1 | -1/+1 |
| | |||||
* | progress: Add machine readable flag. | Richard W.M. Jones | 2011-08-26 | 2 | -13/+26 |
| | | | | | | | | Machine-readable progress bars look like: 0/100 1/100 2/100 | ||||
* | fish: Make progress bars into a mini library. | Richard W.M. Jones | 2011-08-26 | 6 | -165/+207 |
| | | | | This library could now be called from other virt tools. | ||||
* | fish: clarify comment: shared source files are used by virt tools too. | Richard W.M. Jones | 2011-08-26 | 1 | -3/+3 |
| | |||||
* | Coverity: Initialize msg buffer. | Richard W.M. Jones | 2011-08-23 | 1 | -0/+2 |
| | | | | | msg_flags was not being initialized and would have been passed to sendmsg with a random value. | ||||
* | Coverity: fix memory leak in guestfish. | Richard W.M. Jones | 2011-08-23 | 1 | -2/+1 |
| | |||||
* | pclose: Fix other places where we only tested pclose == -1. | Richard W.M. Jones | 2011-08-23 | 1 | -1/+1 |
| | | | | pclose can return > 0 when the status of the command was non-zero. | ||||
* | Coverity: Check guestfs_inspect_get_product_name() != NULL before using. | Richard W.M. Jones | 2011-08-23 | 1 | -1/+1 |
| | |||||
* | fish: Add fish-cmds.h to generator_built. | Richard W.M. Jones | 2011-08-17 | 1 | -0/+1 |
| | | | | This updates commit 3064277680ad11f887691646d0fa17bb35f38c19. | ||||
* | out-of-tree build: fix documentation generation II | Hilko Bengen | 2011-08-17 | 1 | -2/+2 |
| | |||||
* | out-of-tree build: remove unneeded explicit paths | Hilko Bengen | 2011-08-17 | 1 | -4/+4 |
| | |||||
* | out-of-tree build: fix documentation generation | Hilko Bengen | 2011-08-15 | 1 | -9/+9 |
| | |||||
* | fish: Document that remote run in cmd substitution context hangs. | Richard W.M. Jones | 2011-08-12 | 1 | -0/+11 |
| | | | | This documents bug 592910. | ||||
* | fish: Add setenv and unsetenv commands. | Richard W.M. Jones | 2011-08-07 | 2 | -0/+70 |
| | | | | | These commands allow you to manipulate the environment within guestfish. | ||||
* | fish: Declare run_* functions in a generated header file. | Richard W.M. Jones | 2011-08-07 | 1 | -39/+2 |
| | | | | | Calls to these functions are generated, so there is no need to declare the functions by hand. | ||||
* | fish: Print input file and line number in error messages. | Richard W.M. Jones | 2011-08-05 | 3 | -0/+32 |
| | | | | | eg: *stdin*:37: libguestfs: error: luks_close: Device lukstest is busy. | ||||
* | docs: Document FEBOOTSTRAP_KERNEL, FEBOOTSTRAP_MODULES (RHBZ#671082). | Richard W.M. Jones | 2011-07-22 | 1 | -1/+12 |
| | |||||
* | fish: Don't make --ro the default yet. | Richard W.M. Jones | 2011-07-16 | 1 | -1/+1 |
| | | | | Defer this decision to a future version of libguestfs. | ||||
* | fish: Register ^C handler to cancel long transfers. | Richard W.M. Jones | 2011-07-15 | 2 | -1/+25 |
| | |||||
* | fish: Add is_interactive flag. | Richard W.M. Jones | 2011-07-15 | 1 | -2/+9 |
| | | | | | Decide early (before launch) if this is going to be an interactive session, and set the is_interactive flag. | ||||
* | fish: Handle backslash escapes in guestfish double-quoted strings. | Richard W.M. Jones | 2011-07-14 | 2 | -4/+142 |
| | |||||
* | fish: Show device mapper device in tab completion (RHBZ#688062). | Richard W.M. Jones | 2011-07-12 | 1 | -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 | ||||
* | fish: Add 'display' command for displaying graphical files. | Richard W.M. Jones | 2011-06-28 | 4 | -0/+105 |
| | |||||
* | Enable deprecation warnings on all C programs. | Richard W.M. Jones | 2011-05-17 | 1 | -0/+1 |
| | |||||
* | fish: fuse: Remove redundant -DGUESTFS_DEFAULT_PATH. | Richard W.M. Jones | 2011-05-17 | 1 | -1/+0 |
| | | | | | This was left over from earlier code. It is used in the base library, but not in guestfish or guestmount. | ||||
* | fish: Allow -d UUID (specify libvirt domains by UUID). | Richard W.M. Jones | 2011-05-06 | 2 | -0/+5 |
| | | | | | | | | | | | | | | This applies in all the commands which use the common C option parsing code, ie: * guestfish * guestmount * virt-cat * virt-df * virt-filesystems * virt-inspector * virt-ls * virt-rescue | ||||
* | doc: Use I<-...> for cross-references to command line options. | Richard W.M. Jones | 2011-05-01 | 1 | -2/+2 |
| | | | | This is now used consistently across all the documentation. | ||||
* | fish: --rw option will be mandatory in 1.12 not 1.10. | Richard W.M. Jones | 2011-04-16 | 1 | -2/+2 |
| | |||||
* | fish: Fix typo in guestfish man page (--format option). | Richard W.M. Jones | 2011-04-16 | 1 | -1/+1 |
| | |||||
* | Remove local LIBGUESTFS_PATH detection from guestfish and guestmount. | Richard W.M. Jones | 2011-04-16 | 1 | -13/+0 |
| | | | | | | | | | | | Remove the hack that let you run ./fish/guestfish or ./fuse/guestmount. You now have to do: ./run ./fish/guestfish or ./run ./fuse/guestmount to run these programs without installing. | ||||
* | Add missing include directives. | Jim Meyering | 2011-04-13 | 3 | -2/+5 |
| | | | | | | * fish/config.c: Include string.h, for use of strlen. * fish/keys.c: Likewise, but for use of memcpy. * fish/man.c: Likewise, but for use of memset. | ||||
* | fish: Allows win:... paths to work with drives mounted anywhere. | Richard W.M. Jones | 2011-04-12 | 2 | -82/+106 |
| | | | | | | This allows you to mount disks on (eg) /c and /e and have the guestfish win:... path mechanism map drive letters to the right places. | ||||
* | Compile rpcgen-generated files with -fno-strict-aliasing | Matthew Booth | 2011-04-07 | 1 | -4/+4 |
| | | | | | rpcgen generates source which can't be safely compiled with strict-aliasing enabled. | ||||
* | fish: copy-in, copy-out, edit, more commands can use win:... prefix. | Richard W.M. Jones | 2011-04-05 | 3 | -23/+97 |
| | |||||
* | fish: Enhance guestfish win:... parsing to understand drive letters. | Richard W.M. Jones | 2011-04-05 | 2 | -7/+75 |
| | |||||
* | fish: Add 'pulse mode' to the progress bar. | Richard W.M. Jones | 2011-04-02 | 1 | -9/+26 |
| | |||||
* | fish: Move variable decls to top of function. | Richard W.M. Jones | 2011-04-02 | 1 | -10/+15 |
| | | | | This is just code motion. | ||||
* | fish: Fix incorrect path passed to perror. | Richard W.M. Jones | 2011-04-01 | 1 | -1/+1 |
| | | | | Fix commit b8e1dee73a1deef1bfd5937e2abfbe9afef7b1ef. |