summaryrefslogtreecommitdiffstats
path: root/fish
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Generated code for lvresize, resize2fs.Richard Jones2009-05-182-0/+46
|
* Add vg-activate{,-all} commands, and resize recipe.Richard Jones2009-05-182-0/+46
|
* Add: pvresize, sfdisk-N, sfdisk-l, sfdisk-kernel-geomtry, ↵Richard W.M. Jones2009-05-152-1/+130
| | | | sfdisk-disk-geometry commands. Pass --no-reread flag to sfdisk.
* Add support for zerofree command.Richard W.M. Jones2009-05-142-0/+22
|
* Don't stash strings in the handle.Richard W.M. Jones2009-05-131-3/+3
| | | | | - makes it impossible to write bindings for set_{path,qemu,append} functions
* Add 'append', LIBGUESTFS_APPEND to set additional kernel options.Richard W.M. Jones2009-05-132-0/+45
|
* Test the 'command' and 'command_lines' functions thoroughly.Richard Jones2009-05-121-2/+2
|
* Implement -command (to ignore errors) in guestfish, and allow recovery from ↵Richard Jones2009-05-083-14/+25
| | | | qemu process failure.
* Generated code to support previous 2 commits.Richard Jones2009-05-082-1/+78
|
* Missing include <ctype.h>Richard Jones2009-05-061-0/+1
|
* Typo in documentation.Richard W.M. Jones2009-05-011-1/+1
|
* Implement !local in guestfish.Richard W.M. Jones2009-05-011-0/+16
|
* Generated code for 'equal' command.Richard W.M. Jones2009-05-012-0/+26
|
* Generated code for ping-daemon command.Richard W.M. Jones2009-05-012-0/+20
|
* Generated code for dmesg command.Richard W.M. Jones2009-05-012-0/+23
|
* Generated code for drop-caches command.Richard W.M. Jones2009-05-012-0/+22
|
* Generated code for cp, cp-a and mv commands.Richard W.M. Jones2009-05-012-0/+72
|
* Generated code for grub-install command.Richard Jones2009-04-302-0/+24
|
* Added guestfish 'echo' command.1.0.16Richard Jones2009-04-304-0/+52
|
* Added a comment syntax to guestfish (# ...).Richard Jones2009-04-301-0/+5
|
* Added notes to the 'fsck' command documentation.Richard Jones2009-04-301-1/+1
|
* Added 'zero' command to wipe partition tables and superblocks.Richard Jones2009-04-302-0/+22
|
* Add generated code for 'fsck' command.Richard Jones2009-04-302-0/+26
|
* Autosync now runs umount-all; syncRichard Jones2009-04-301-1/+1
|
* build: don't tell "make clean" to remove my '~' backup filesJim Meyering2009-04-301-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hi Rich, automake's policy on what to remove via "make clean" is reasonable: if running build rules creates it, then "make clean" can and should remove it. However, even if build rules happen to create backup files, please remove only the specific ones they can create, not all of the ones in a directory. Just in case someone relies on those and expect them to hang around... >From 1e8be391ac17b4ddcf9671e8413d2660844e6993 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Thu, 30 Apr 2009 15:47:52 +0200 Subject: [PATCH] build: don't tell "make clean" to remove my '~' backup files * Makefile.am (CLEANFILES): Don't remove '~' backup files. * daemon/Makefile.am: Ditto. * examples/Makefile.am: Ditto. * fish/Makefile.am: Ditto. * images/Makefile.am: Ditto. * inspector/Makefile.am: Ditto. * java/Makefile.am: Ditto. * ocaml/Makefile.am: Ditto. * ocaml/examples/Makefile.am: Ditto. * perl/Makefile.am: Ditto. * python/Makefile.am: Ditto. * ruby/Makefile.am: Ditto. * src/Makefile.am: Ditto.
* * fish/completion.c (commands): Declare with a 2nd "const".Jim Meyering2009-04-301-1/+1
| | | | | | | | | It's a const array of const strings. >From 70c53d3169ae53fc4874e00975893d33387c51e6 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Thu, 30 Apr 2009 14:33:01 +0200 Subject: [PATCH] * fish/completion.c (commands): Declare with a 2nd "const".
* Generated code for ext2 UUID and label functions.Richard Jones2009-04-272-0/+98
|
* Add --version option (show version) to guestfish.Richard Jones2009-04-261-1/+7
|
* Added the --ro option (readonly) to guestfish.Richard Jones2009-04-261-3/+15
|
* Don't echo output in scripts.Richard Jones2009-04-261-10/+12
|
* Generated code for lvremove, vgremove, pvremove.Richard Jones2009-04-252-2/+68
|
* If LIBGUESTFS_PATH is set, guestfish shouldn't modify the path.Richard Jones2009-04-251-1/+5
|
* Fix buffer overrun in guestfish command-line parsing.Richard W.M. Jones2009-04-231-2/+2
|
* Generated code for debug command.Richard W.M. Jones2009-04-232-0/+27
|
* Generated code for new mount_* commands.Richard Jones2009-04-222-0/+78
|
* Allow qemu binary to be overridden at runtime.Richard Jones2009-04-222-0/+45
|
* Added tar-in, tar-out, tgz-in, tgz-out commands.Richard Jones2009-04-202-0/+96
|
* Generated code for 'checksum' command.Richard Jones2009-04-202-0/+27
|
* Begin to add the upload and download commands.Richard Jones2009-04-182-0/+48
|
* Separate out the high-level API actions.Richard Jones2009-04-182-0/+110
| | | | | | - Split out the high-level API actions so that they are in a separate file, and use the defined guestfs C API, instead of fiddling around with internal structures.
* Rewrite of main loop impl, start of FileIn/FileOut support.Richard Jones2009-04-181-1/+1
|
* 'guestfish edit' commands and several bugfixes.Richard Jones2009-04-155-6/+220
|
* Move guestfish 'alloc' command to a separate file.Richard Jones2009-04-154-82/+117
|