summaryrefslogtreecommitdiffstats
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.
* Add Dutch translation (RHBZ#629593).Geert Warrink2010-09-021-0/+3129
|
* Version 1.5.7.1.5.7Richard Jones2010-09-0112-1217/+1319
|
* fish: Implement progress bars in guestfish.Richard Jones2010-09-011-0/+1
| | | | | | | | | | | | | | | | | The progress bar is updated 3 times per second, and is not displayed at all for operations which take less than two seconds. You can disable progress bars by using the flag --no-progress-bars, and you can enable progress bars in non-interactive sessions with the flag --progress-bars. A good way to test this is to use the following command: guestfish --progress-bars \ -N disk:10G \ zero-device /dev/sda (adjust "10G" to get different lengths of time).
* Version 1.5.6.1.5.6Richard Jones2010-08-2712-625/+625
|
* Update BUGS, PO files.1.5.5Richard Jones2010-08-262-2062/+1308
|
* Update Spanish translations (RHBZ#627556).Daniel Cabrera2010-08-261-1326/+1343
|
* Updated Spanish translations (RHBZ#626843).Daniel Cabrera2010-08-261-835/+1606
|
* Update Polish translation (RHBZ#502533).Piotr Drąg2010-08-261-626/+593
|
* Prepare for version 1.5.5.Richard Jones2010-08-2612-85/+85
|
* Version 1.5.4.1.5.4Richard Jones2010-08-2412-6109/+6285
|
* Change to using ext2-based, cached supermin appliance.Richard Jones2010-08-231-0/+1
| | | | | | | | | | | | This changes the method used to build the supermin appliance to use the new ext2-based appliance supported by latest febootstrap. The appliance can also be cached, so we avoid rebuilding it each time it is used. Mailing list discussion goes into the rationale and details: https://www.redhat.com/archives/libguestfs/2010-August/msg00028.html Requires febootstrap >= 2.8.
* Version 1.5.31.5.3Richard Jones2010-08-1712-7105/+8733
|
* fish: Reimplement -i option using new C-based inspection.Richard Jones2010-08-171-0/+1
| | | | | | | | | | | | | | Don't shell out to virt-inspector. Instead, use the new C-based inspection APIs. This is much faster. The new syntax is slightly different: guestfish -a disk.img -i guestfish -d guest -i However, the old syntax still works.
* fish: Add -c/--connect and -d/--domain options.Richard Jones2010-08-171-0/+1
| | | | | | | | The -d option lets you specify libvirt domains. The disks from these domains are found and added, as if you'd named them with -a. The -c option lets you specify a libvirt URI, which is needed when we consult libvirt to implement the above.
* New APIs: findfs-label and findfs-uuidRichard Jones2010-08-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | These two calls wrap up the /sbin/findfs command, allowing you to find a filesystem by only knowing its label or UUID. This is especially useful when resolving LABEL=... or UUID=... entries in /etc/fstab. Sample guestfish session: ><fs> vfs-uuid /dev/vda1 277dd61c-bf34-4253-a8dc-df500a05e7df ><fs> findfs-uuid 277dd61c-bf34-4253-a8dc-df500a05e7df /dev/vda1 ><fs> vfs-label /dev/vda1 /boot ><fs> findfs-label /boot /dev/vda1 ><fs> vfs-uuid /dev/VolGroup00/LogVol00 40ce7c36-82ce-4a12-a99d-48f5e054162c ><fs> findfs-uuid 40ce7c36-82ce-4a12-a99d-48f5e054162c /dev/mapper/VolGroup00-LogVol00 ><fs> findfs-uuid 12345678 libguestfs: error: findfs_uuid: findfs: unable to resolve 'UUID=12345678'
* New API: file-architectureRichard Jones2010-08-171-0/+1
| | | | | | This change simply converts the existing Perl-only function file_architecture into a core API call. The core API call is written in C and available in all languages and from guestfish.
* Rearrange library code into separate files.Richard Jones2010-07-271-0/+2
| | | | | | | | | | | | We split the library code into these separate files: - guestfs.c: creating handles, closing handles, handle-related variables - actions.c: generated library-side stubs for each action - bindtests.c: generated code to test bindings - launch.c: launching the appliance - proto.c: the library side of the daemon communications protocol This is just code movement.
* Rename guestfs-{actions,bindtests}.c to {actions,bindtests}.cRichard Jones2010-07-271-2/+2
| | | | | Rename these two generated files, in preparation for splitting up the main src/guestfs.c file.
* Version 1.5.2.1.5.2Richard Jones2010-07-2212-5821/+6024
|
* Version 1.5.1.1.5.1Richard Jones2010-07-2112-6519/+6937
|
* New APIs: Support for opening LUKS-encrypted disks.Richard Jones2010-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds support for opening LUKS-encrypted disks, via three new APIs: luks_open: Create a mapping for an encrypted disk. luks_open_ro: Same, but read-only mapping. luks_close: Close a mapping. A typical guestfish session using this functionality looks like this: $ guestfish --ro -a encrypted.img ><fs> run ><fs> list-devices /dev/vda ><fs> list-partitions /dev/vda1 /dev/vda2 ><fs> vfs-type /dev/vda2 crypto_LUKS ><fs> luks-open /dev/vda2 luksdev Enter key or passphrase ("key"): ><fs> vgscan ><fs> vg-activate-all true ><fs> pvs /dev/dm-0 ><fs> vgs vg_f13x64encrypted ><fs> lvs /dev/vg_f13x64encrypted/lv_root /dev/vg_f13x64encrypted/lv_swap ><fs> mount /dev/vg_f13x64encrypted/lv_root / ><fs> ll / total 132 dr-xr-xr-x. 24 root root 4096 Jul 21 12:01 . dr-xr-xr-x 20 root root 0 Jul 21 20:06 .. drwx------. 3 root root 4096 Jul 21 11:59 .dbus drwx------. 2 root root 4096 Jul 21 12:00 .pulse -rw-------. 1 root root 256 Jul 21 12:00 .pulse-cookie dr-xr-xr-x. 2 root root 4096 May 13 03:03 bin NOT included in this patch: - An easier way to use this from guestfish. - Ability to create LUKS devices. - Ability to change LUKS keys on existing devices. - Direct access to the /dev/mapper device (eg. if it contains anything apart from VGs).
* New APIs: lvm-set-filter and lvm-clear-filter.Richard Jones2010-07-161-0/+1
| | | | | | | These APIs allow you to change the device filter, the list of block devices that LVM "sees". Either you can set it to a fixed list of devices / partitions, or you can clear it so that LVM sees everything.
* Prepare for new development branch, starting at 1.5.0.Richard Jones2010-07-0812-493/+507
| | | | | | Add BUGS and RELEASE-NOTES to EXTRA_DIST. Also update the RELEASE-NOTES file.
* Version 1.3.21.1.3.21Richard Jones2010-06-1612-2141/+1468
|
* Update Spanish translations (RHBZ#603870).Richard Jones2010-06-151-707/+1425
|
* Version 1.3.20.1.3.20Richard Jones2010-06-0812-145/+204
|
* Version 1.3.19.1.3.19Richard Jones2010-06-0412-13/+13
| | | | Update BUGS and PO files.
* Version 1.3.18.1.3.18Richard Jones2010-06-0212-37/+50
| | | | Update BUGS and PO files.