summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Use udev if available (Guido Gunter).Guido Günther2009-06-302-19/+30
| | | | | | | | Added support for Fedora's udev (Richard Jones).
| * define REDHAT and DEBIANGuido Günther2009-06-303-8/+21
| | | | | | | | so we can preprocess packagelist.in
| * Todo: Suggest an environment variable for memsize configuration.Richard W.M. Jones2009-06-291-0/+1
| |
| * Generated code for the 'mkswap*' commands.Richard W.M. Jones2009-06-2924-4/+1235
| |
| * Implement 'mkswap', 'mkswap_L' and 'mkswap_U' commands.Richard W.M. Jones2009-06-293-0/+95
| | | | | | | | | | | | These commands are used to make Linux swap devices. The mkswap_L command makes one with a label. The mkswap_U command makes one with a known UUID.
| * Todo: Allow memsize to be configured.Richard W.M. Jones2009-06-291-0/+4
| |
| * Todo: Investigations into 'binarch' command.Richard W.M. Jones2009-06-291-0/+9
| |
| * Rearrange guestfish commands in the manpage.Richard W.M. Jones2009-06-291-21/+26
| |
| * Add missing documentation for new 'more' and 'less' commands in guestfish.Richard W.M. Jones2009-06-291-0/+14
| |
| * Version 1.0.541.0.54Richard W.M. Jones2009-06-293-111/+161
| |
| * Check for XML::Writer dependency for virt-inspector.Richard W.M. Jones2009-06-291-1/+1
| |
| * Remove generated files in make clean.Richard W.M. Jones2009-06-291-2/+5
| |
| * Merge commit 'et/master'Matthew Booth2009-06-2933-41/+1143
| |\
| | * Fix for 'broken pipe' error when qemu dies (RHBZ#508713).Richard W.M. Jones2009-06-291-2/+5
| | |
| | * Generated code for mount-loop command.Richard W.M. Jones2009-06-2924-3/+356
| | |
| | * Add mount-loop command (RHBZ#508668).Richard W.M. Jones2009-06-292-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | Loop device mounts don't work for the generic 'mount' commands because the first parameter should be a file not a device. We want to separate out files parameters from device parameters in the long term, so this adds a new mount-loop command for this purpose.
| | * Fix memory leak in daemon/mount.c:do_mount_vfs.Richard W.M. Jones2009-06-291-0/+1
| | |
| | * Todo list: More suggestions.Richard W.M. Jones2009-06-291-0/+13
| | |
| | * Generated code for 'initrd-list'.Richard W.M. Jones2009-06-2923-3/+594
| | |
| | * Add 'initrd-list' command to list contents of initrd images.Richard W.M. Jones2009-06-296-35/+124
| | | | | | | | | | | | | | | | | | Add 'initrd-list' command to list the files inside (new-style) initrd images. Update virt-inspector to use this instead of the less efficient download/unpack locally method.
| * | Output the config filename containing a modprobe alias in XMLMatthew Booth2009-06-291-4/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change affects the XML output: /operatingsystems/operatingsystem/modprobealiases/alias/text() => /operatingsystems/operatingsystem/modprobealiases/alias/modulename/text() Additionally there are two new elements: /operatingsystems/operatingsystem/modprobealiases/alias/augeas /operatingsystems/operatingsystem/modprobealiases/alias/file These contain information about the location of the alias directive. /augeas is an augeas path. /file is the path of the file containing the directive.
| * | Add a comment to device naming heuristicMatthew Booth2009-06-291-0/+6
| |/
| * Generated code for 'du' command.Richard W.M. Jones2009-06-2924-4/+502
| |
| * Added 'du' command.Richard W.M. Jones2009-06-294-1/+89
| | | | | | | | This command estimates file usage for files and directories.
| * Generated code for df / df-h.Richard W.M. Jones2009-06-2923-2/+653
| |
| * Add 'df' and 'df-h' commands.Richard W.M. Jones2009-06-293-0/+96
| | | | | | | | | | | | | | df and df-h commands can be used interactively to show disk space usage. Use existing statvfs command from programs.
| * Todo: Removed suggestion for short form for pipes.Richard W.M. Jones2009-06-291-4/+0
| |
| * Implement "more" and "less" commands in guestfish.Richard W.M. Jones2009-06-296-21/+137
| | | | | | | | | | | | | | | | Use commands such as: more /etc/passwd less /etc/fstab These commands are specific to guestfish.
| * Todo list: Pipes now implemented, so remove from list.Richard W.M. Jones2009-06-291-1/+0
| |
| * Generated code for head/tail commands.Richard W.M. Jones2009-06-2925-49/+3081
| |
| * Implement "head", "head-n", "tail", "tail-n" commands.Richard W.M. Jones2009-06-294-1/+166
| | | | | | | | | | These commands let you view parts of a large file without passing the whole file over the network connection.
| * Prevent 'n' being used as a parameter name.Richard W.M. Jones2009-06-291-3/+3
| | | | | | | | | | Parameters named 'n' sometimes break the Perl bindings, so check for this in the generator and prevent it.
| * Generated code for 'wc_*' commands.Richard W.M. Jones2009-06-2925-157/+1648
| |
| * Todo: wc command done.Richard W.M. Jones2009-06-291-1/+0
| |
| * Implementation of 'wc_c', 'wc_w' and 'wc_l' commands.Richard W.M. Jones2009-06-292-0/+28
| | | | | | | | These commands count characters, words and lines in a file respectively.
| * Implement TEST_ONLY environment variable to run selected tests only.Richard W.M. Jones2009-06-293-6/+464
| | | | | | | | | | To run just selected tests, do: TEST_ONLY="hexdump mkfs" make -C capitests check
| * Add large test files with standard content for the C API test.Richard W.M. Jones2009-06-294-3/+146
| | | | | | | | | | Large test files with standard content for the C API test, and add a regression test for previous hexdump failure on large files.
| * Todo: RUN_ONLY_FORRichard W.M. Jones2009-06-291-0/+4
| |
| * Todo: 'wc' command.Richard W.M. Jones2009-06-291-1/+2
| |
| * Guestfish pipes.Richard W.M. Jones2009-06-284-17/+99
| |
| * Haskell bindings: Implement bindtests.Richard W.M. Jones2009-06-286-4/+104
| |
| * Haskell bindings: Int and Int64 return types.Richard W.M. Jones2009-06-282-3/+172
| |
| * Merge branch 'master' of git+ssh://g-rjones@et.redhat.com/git/libguestfsRichard W.M. Jones2009-06-281-62/+57
| |\
| | * Clean up XML outputMatthew Booth2009-06-271-62/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change makes XML use XML::Writer, and modifies the output in the following 2 ways: * /operatingsystems/operatingsystem/os is renamed to /operatingsystems/operatingsystem/name * /operatingsystems/kernels/version becomes an attribute of /operatingsystems/kernel for consistency with initrds
| * | Haskell bindings: fix boolean arguments.Richard W.M. Jones2009-06-282-5/+80
| | |
| * | Haskell bindings: Fix integer arguments.Richard W.M. Jones2009-06-282-10/+157
| |/
| * Make virt-inspector look in more places for module aliasesMatthew Booth2009-06-251-5/+38
| | | | | | | | | | | | | | | | Specifically: /etc/conf.modules /etc/modules.conf /etc/modprobe.conf /etc/modprobe.d/*
| * Add yaml output for virt-inspectorMatthew Booth2009-06-251-0/+15
| |
| * Make run-inspector-locally try to work out where it is installedMatthew Booth2009-06-251-9/+32
| | | | | | | | | | | | | | This change means that you can run run-inspector-locally from any directory. You can also symlink to it and it'll do the right thing. This means you can put a symlink to run-inspectory-locally in your path called 'virt-inspector', and 'guestfish -i' will work.
| * More TODO items for future work.Richard W.M. Jones2009-06-241-0/+54
| |