summaryrefslogtreecommitdiffstats
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Version 1.5.16.1.5.16Richard Jones2010-09-1513-560/+625
|
* Version 1.5.15.1.5.15Richard Jones2010-09-1513-6476/+6604
|
* Version 1.5.14.1.5.14Richard Jones2010-09-1413-1623/+824
|
* Update Spanish translation (RHBZ#633357).Richard Jones2010-09-131-853/+1664
|
* Version 1.5.13.1.5.13Richard Jones2010-09-1313-14/+14
|
* Version 1.5.12.1.5.12Richard Jones2010-09-1113-963/+963
|
* syntax: Remove trailing spaces.Richard Jones2010-09-101-1/+1
|
* Version 1.5.11.1.5.11Richard Jones2010-09-1013-53/+53
|
* Version 1.5.10.1.5.10Richard Jones2010-09-0913-6760/+7946
|
* fish: Implement copy-in and copy-out commands.Richard Jones2010-09-091-0/+1
|
* daemon: Move 'exists', 'is-file' and 'is-dir' to separate file.Richard Jones2010-09-091-0/+1
| | | | This commit is just code movement.
* Version 1.5.9.1.5.9Richard Jones2010-09-0813-804/+1512
|
* fish: Add guestfish -N bootroot and -N bootrootlv for creating boot+root disks.Richard Jones2010-09-081-0/+1
|
* fish: Add guestfish -N lv for creating disks with LVs.Richard Jones2010-09-081-0/+1
|
* fish: Generate list of prepared disk image types.Richard Jones2010-09-081-0/+4
| | | | This commit shouldn't change the semantics of the code.
* Version 1.5.8.1.5.8Richard Jones2010-09-0413-156/+194
|
* PHP bindings.Richard Jones2010-09-041-0/+1
| | | | | | Note that these are not complete on 32 bit architectures. PHP doesn't offer any convenient 64 bit type (on 32 bit). Therefore you should always use these PHP bindings on 64 bit.