summaryrefslogtreecommitdiffstats
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.7.20.1.7.20Richard W.M. Jones2010-12-0713-92/+92
|
* Version 1.7.19.1.7.19Richard W.M. Jones2010-12-0513-7138/+7151
|
* Version 1.7.18.1.7.18Richard W.M. Jones2010-12-0113-235/+235
|
* Version 1.7.17.1.7.17Richard W.M. Jones2010-11-3013-430/+430
|
* Version 1.7.16.1.7.16Richard W.M. Jones2010-11-2613-7125/+7125
|
* Version 1.7.15.1.7.15Richard W.M. Jones2010-11-2613-94/+742
|
* rescue: Rewrite virt-rescue in C.Richard W.M. Jones2010-11-261-1/+1
|
* Version 1.7.14.1.7.14Richard W.M. Jones2010-11-2513-1386/+2292
|
* df: Rewrite virt-df in C.Richard W.M. Jones2010-11-251-1/+4
| | | | | | | | | | | | I have diffed the output from the original virt-df with this new version, and they agree very closely. Some differences: - Old virt-df have a divide-by-zero error in cases where the number of used inodes was 0. New virt-df fixes this. - New virt-df uses gnulib human_readable library which displays numbers to 3 significant figures for -h output (old version used an ad hoc function).
* Version 1.7.13.1.7.13Richard W.M. Jones2010-11-2413-117/+339
|
* Version 1.7.12.1.7.12Richard W.M. Jones2010-11-2313-719/+1715
|
* New tool: virt-filesystemsRichard W.M. Jones2010-11-231-0/+1
| | | | | | | | This tool replaces virt-list-filesystems and virt-list-partitions with a new tool written in C with a more uniform command line structure and output. This existing Perl tools are deprecated but remain indefinitely.
* ls: Rewrite virt-ls in C.Richard W.M. Jones2010-11-231-1/+1
|
* Version 1.7.11.1.7.11Richard W.M. Jones2010-11-1913-156/+1093
|
* inspector: Rewrite virt-inspector in C.Richard W.M. Jones2010-11-191-1/+1
|
* Version 1.7.10.1.7.10Richard W.M. Jones2010-11-1713-14/+14
|
* Version 1.7.9.1.7.9Richard W.M. Jones2010-11-1613-7151/+7154
|
* Version 1.7.8.1.7.8Richard W.M. Jones2010-11-1513-7021/+7218
|
* Version 1.7.7.1.7.7Richard W.M. Jones2010-11-1513-14/+14
|
* Version 1.7.6.1.7.6Richard W.M. Jones2010-11-1313-105/+428
|
* Version 1.7.5.1.7.5Richard W.M. Jones2010-11-1313-7008/+7131
|
* Version 1.7.4.1.7.4Richard W.M. Jones2010-11-1113-8064/+8875
|
* Rewrite virt-cat in C.Richard W.M. Jones2010-11-111-1/+1
| | | | | | | | | | | | | | | | | With changes in the core API since 1.5, virt-cat was little more than a Perl wrapper which did some command line argument processing. Thus it could easily be rewritten in C. This version also shares core command line argument processing with guestfish and guestmount, so the options have changed slightly (old-style command line *is* supported). virt-cat -a disk.img file [file ...] virt-cat -d domname file [file ...] Several other guestfish options are supported including encryption, and with the new style multiple files can be downloaded. See the man page for details.
* New API: add-domainRichard Jones2010-11-111-0/+1
| | | | | | | | | | | | | | | | | | | This new API allows you to add the disks from a libvirt domain. In guestfish you can use the 'domain' command to access the API, eg: ><fs> domain Fedora14 libvirturi:qemu:///system 1 The returned number is the number of disks that were added. Also here is a proposed (but commented out) low-level API which would allow you to add a domain from a virDomainPtr. However there are several problems with this API -- see discussion on the list: https://www.redhat.com/archives/libguestfs/2010-November/thread.html#00028
* lib: Make pcre, libmagic and hivex libraries optional.Richard Jones2010-11-101-0/+2
| | | | | | | | | | | | | | | This change makes these libraries optional. If they are not available at compile time then certain core API features will be disabled (see below). This also changes PCRE detection to use pkg-config instead of the ad hoc autoconf checks. The large inspect.c file has been split out into separate function-specific files. file-architecture: requires pcre & libmagic inspection: requires pcre & hivex
* Version 1.7.3.1.7.3Richard W.M. Jones2010-11-0813-7346/+7416
|
* Version 1.7.2.1.7.2Richard W.M. Jones2010-11-0513-7219/+7570
|
* fish: '-i' option automatically handles whole-disk encryption.Richard W.M. Jones2010-11-051-0/+1
| | | | | | | | | | | This feature is also available in guestmount because of the shared option parsing code. You don't need to do anything to enable it, just using -i will attempt decryption of encrypted partitions. Only works for simple Fedora whole-disk encryption. It's a work-in-progress to make it work for other types of encryption.
* fish: Make the 'help' command more helpful.Richard W.M. Jones2010-11-041-0/+1
|
* Version 1.7.1.1.7.1Richard W.M. Jones2010-11-0313-6969/+6917
|
* fish: Use a perfect hash for faster command lookups.Richard W.M. Jones2010-11-031-0/+1
| | | | | | Existing command lookups are approx O(n^2). Replace this with a perfect hash implementation which should be a lot faster.
* lib: Expose errno through new API guestfs_last_errno.Richard W.M. Jones2010-11-031-0/+2
| | | | | | | If either the daemon sends back an errno, or a system call fails in the library, save the errno in the handle and then make it available to callers through the guestfs_last_errno function.
* daemon: Send back the errno as a string.Richard W.M. Jones2010-11-031-0/+2
| | | | | | | | This changes the protocol again so that if the errno is available, it is converted to a string (like "EIO") and sent back over the protocol to the library. In this commit the library just discards the string.
* Version 1.7.0.1.7.0Richard W.M. Jones2010-11-0213-66/+66
|
* Version 1.5.26.1.5.26Richard W.M. Jones2010-10-2913-66/+66
|
* Version 1.5.25.1.5.25Richard W.M. Jones2010-10-2813-8162/+8140
|
* Ensure atomic creation of a cached applianceMatthew Booth2010-10-281-0/+1
| | | | | | | | | | | | | | | | | | | | Cached appliances are discovered by their predictable path. Previously we were creating a cached appliance directly in this predictable path. This had at least 2 undesirable effects: * Interrupting appliance creation would leave a corrupt appliance * 2 processes could simultaneously attempt to create the same appliance, causing corruption. This patch causes the cached appliance to be created in a temporary directory, and then renamed to the predictable path. As rename is an atomic operation, this makes the whole creation atomic. This patch also changes the predictable path to have a prefix of 'guestfs.'. This will make it simpler for system administrators to clean up old cached appliances. This patch resolves RHBZ#639405
* Version 1.5.24.1.5.24Richard W.M. Jones2010-10-2713-8074/+8266
|
* Unify guestfish and guestmount options processing (RHBZ#642932).Richard W.M. Jones2010-10-271-0/+1
| | | | | | | | | | | | | | | In guestfish, factor out the processing of the options -a, -c, -d, -i, -m, -n, -r, -v, -V, -x into a separate set of files: options.c, options.h, inspect.c, virt.c. Change guestmount so that it uses these same files (from the ../fish directory) to process the same options. This unifies the handling of these options between the two programs. It also adds the useful inspection feature to guestmount, so you can now do: guestmount -d Guest -i --ro mnt/
* Update Polish translations (RHBZ#502533).Piotr Drąg2010-10-231-16/+17
|
* Version 1.5.23.1.5.23Richard W.M. Jones2010-10-2213-9102/+9336
|
* Version 1.5.22.1.5.22Richard W.M. Jones2010-10-1913-430/+430
|
* Version 1.5.21.1.5.21Richard W.M. Jones2010-10-0113-6982/+7111
|
* Version 1.5.20.1.5.20Richard W.M. Jones2010-09-2613-8089/+7322
|
* Update Spanish translations (RHBZ#636918).Daniel Cabrera2010-09-231-855/+1676
|
* Update Polish translations (RHBZ#502533).Piotr Drąg2010-09-231-332/+86
|
* Version 1.5.19.1.5.19Richard W.M. Jones2010-09-2213-14/+14
|
* Version 1.5.18.1.5.18Richard W.M. Jones2010-09-2213-14/+14
|
* Version 1.5.17.1.5.17Richard W.M. Jones2010-09-2113-11027/+10971
|
* fish: Implement 'hexedit' command.Richard W.M. Jones2010-09-211-0/+1
|