summaryrefslogtreecommitdiffstats
path: root/fish
Commit message (Collapse)AuthorAgeFilesLines
...
* guestfish -iv should print virt-inspector command (for debugging).Richard W.M. Jones2009-07-241-1/+3
|
* More misc fixes for non-srcdir builds.Richard Jones2009-07-161-3/+9
|
* guestfish: Add tilde expansion for paths (RHBZ#511372).Richard Jones2009-07-154-1/+138
| | | | | | | | | | | | | | | | | | | This commit adds tilde expansion for local users in guestfish: ><fs> echo "~" ~ ><fs> echo ~ /home/rjones ><fs> echo ~foo ~foo ><fs> echo ~rjones/bar /home/rjones/bar ><fs> echo ~roo ~roo ><fs> echo ~root/foo /root/foo ><fs> echo ~root /root
* File missing from tarball: rc_protocol.xRichard W.M. Jones2009-07-141-0/+3
|
* Guestfish feature: remote control of guestfish over a pipe.Richard Jones2009-07-145-7/+395
| | | | | | | | | | | | | | | | | The use case is to have a long-running guestfish process in a shell script, and thus to avoid the overhead of starting guestfish each time. Do: eval `guestfish --listen` guestfish --remote somecmd guestfish --remote someothercmd guestfish --remote exit This patch also supports having multiple guestfish processes at the same time. The protocol is simple XDR messages over a Unix domain socket.
* Guestfish: implement -x option, echo commands before executing them.Richard W.M. Jones2009-07-111-2/+15
|
* Fix: '-D' was not recognized as a parameter to guestfish.Richard W.M. Jones2009-07-111-1/+1
|
* Guestfish: Add 'reopen' command to reopen the libguestfs handle.Richard W.M. Jones2009-07-114-4/+90
|
* Add missing documentation for "more" command in guestfish help output.Richard W.M. Jones2009-07-111-0/+2
|
* guestfish: Always fflush stdout between commands.Richard Jones2009-07-061-1/+5
|
* Make it possible to build in a separate directoryMatthew Booth2009-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | This patch allows you to do: mkdir build cd build ../configure ... make This will output all generated files to the build directory. Given that autogen automatically runs configure, you can also do: BUILDDIR=./build ./autogen.sh which will do the right thing. Also: * Fix a dependency bug which means that guestfs_protocol.h isn't automatically rebuilt. * Re-running autogen.sh with no arguments won't blow away your previous configure arguments.
* remove trailing blanksJim Meyering2009-07-038-8/+8
|
* Guestfish tab-completion on destination paths, fixed this time.Richard W.M. Jones2009-07-031-49/+74
| | | | Tab-completion on destination paths should now work correctly.
* Add the guestfish 'time' command.Richard W.M. Jones2009-07-024-9/+78
| | | | | ><fs> time sfdisk /dev/sda 0 0 0 , elapsed time: 6.12 seconds
* Remove generated code from git.Richard W.M. Jones2009-07-022-4111/+0
| | | | | | | | Git users now require the OCaml compiler in order to regenerate the generated code after a checkout. Generated code will remain in the tarball, so users of the source tarball will not need the OCaml compiler.
* Add 'readdir' call.Richard W.M. Jones2009-07-022-0/+40
| | | | | | | | | | | | This adds a readdir call (mostly intended for programs). The return value is a list of guestfs_dirent structures. This adds the new types 'struct guestfs_dirent' and 'struct guestfs_dirent_list', along with all the code to return these in the different language bindings. Also includes additional tests for OCaml and Perl bindings to test this.
* fish: handle some out-of-memory conditionsJim Meyering2009-07-011-29/+62
| | | | | | | | | | | | | * fish/destpaths.c (xalloc_oversized): Define. (complete_dest_paths_generator): Use size_t as type for a few variables, rather than int. Don't deref NULL or undef on failed heap alloc. Don't leak on failed realloc. Detect theoretical overflow when count_strings returns a very large number of strings. Handle asprintf failure. (APPEND_STRS_AND_FREE): Rewrite as do {...}while(0), so that each use can/must be followed by a semicolon. Better for auto-formatters.
* Generated code for the virtio_blk change.Richard W.M. Jones2009-07-011-3/+3
|
* Generated code for mknod, mkfifo, mknod_b, mknod_c, umask.Richard W.M. Jones2009-06-302-0/+132
|
* Generated code for 'set_memsize'/'get_memsize' calls.Richard W.M. Jones2009-06-302-0/+45
|
* Generated code for the 'mkswap*' commands.Richard W.M. Jones2009-06-292-0/+70
|
* Generated code for mount-loop command.Richard W.M. Jones2009-06-292-0/+24
|
* Generated code for 'initrd-list'.Richard W.M. Jones2009-06-292-0/+25
|
* Generated code for 'du' command.Richard W.M. Jones2009-06-292-0/+24
|
* Generated code for df / df-h.Richard W.M. Jones2009-06-292-0/+46
|
* Implement "more" and "less" commands in guestfish.Richard W.M. Jones2009-06-295-20/+137
| | | | | | | | Use commands such as: more /etc/passwd less /etc/fstab These commands are specific to guestfish.
* Generated code for head/tail commands.Richard W.M. Jones2009-06-292-4/+108
|
* Generated code for 'wc_*' commands.Richard W.M. Jones2009-06-292-0/+72
|
* Guestfish pipes.Richard W.M. Jones2009-06-283-17/+73
|
* Clarify documentation for mkdtemp.Richard W.M. Jones2009-06-241-1/+1
|
* Generated code for 'mkdtemp' command.Richard W.M. Jones2009-06-242-0/+25
|
* Quote command line arguments to virt-inspector.Richard W.M. Jones2009-06-241-1/+2
|
* Added guestfish -i option to run virt-inspector.Richard W.M. Jones2009-06-241-2/+58
| | | | | | You can invoke guestfish with: guestfish -i libvirt-domain guestfish -i disk-image(s)
* Implement guestfish -f option to allow guestfish scripts.Richard W.M. Jones2009-06-241-2/+21
| | | | | New '-f' option allows scripts to be written using: #!/usr/bin/guestfish -f
* Incorrect assignment on glob error path.Richard W.M. Jones2009-06-241-1/+1
|
* Generated code for 'scrub-*' commands.Richard W.M. Jones2009-06-232-2/+68
|
* Add 'glob' command for guestfish.Richard Jones2009-06-224-4/+183
|
* Generated code for 'glob-expand'.Richard Jones2009-06-222-0/+25
|
* Generated code for 'sh' and 'sh-lines' commands.Richard Jones2009-06-222-2/+52
|
* Add tab-completion of guest filenames (currently disabled).Richard Jones2009-06-185-0/+201
|
* Generated code for ntfs_3g_probe command.Richard Jones2009-06-082-0/+26
|
* Added 'lcd' command to guestfish.Richard Jones2009-06-084-2/+63
|
* Generated code for the 'sleep' command.Richard Jones2009-06-042-0/+22
|
* use add_drive_ro for --mount parameters from guestfish when called with --roCharles Duffy2009-06-021-2/+35
| | | | | | | | | | | | To prevent writes (such as ext3 journal replay) from occuring even when --ro is passed, guestfish should use add_drive_ro() for any drives specified on the command line with --add if --ro is also passed. As we need to look through the entire command line for --ro before adding any drives, we move the add process out of the argument-parsing loop and into its own function, patterned off mount_mps(). Signed-off-by: Charles Duffy <charles_duffy@dell.com>
* Generated code for 'add_drive_ro' call.Richard Jones2009-06-022-2/+25
|
* Move the appliance and build scripts into new appliance/ subdirectory.Richard W.M. Jones2009-05-281-4/+5
|
* Guestfish built-in commands auto-complete (RHBZ#501878).Richard Jones2009-05-272-112/+123
|
* Generated code for e2fsck-f command.Richard Jones2009-05-212-1/+23
|
* Gettextize the source, make library strings translatable.Richard Jones2009-05-214-88/+98
|
* Generated code for 'find' command.Richard Jones2009-05-192-0/+25
|