summaryrefslogtreecommitdiffstats
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
...
* Updated Polish translationPiotr Drąg2009-10-051-552/+309
|
* Prepare for 1.0.72.1.0.72Richard Jones2009-09-232-709/+729
| | | | Also update PO files.
* Rename virt-[tool].pl as virt-[tool]Richard Jones2009-09-231-5/+5
|
* New tool: virt-editRichard Jones2009-09-231-0/+1
| | | | | | | | | | | | | Edit any file in a guest. This was possibly previously using guestfish, but having a separate command makes it simpler. The usage is simply: virt-edit mydomain /some/file It runs $EDITOR or vi on the file, and if the user changes it, uploads the result back to the VM.
* Add 'virt-rescue' command.Richard Jones2009-09-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This command runs a "rescue appliance" against a virtual machine or disk image. This is useful for making ad-hoc interactive changes to virtual machines. $ virt-rescue --ro /dev/vg_trick/F11x64 Welcome to virt-rescue, the libguestfs rescue shell. Note: The contents of / are the rescue appliance. You have to mount the guest's partitions under /sysroot before you will be able to examine them. bash: cannot set terminal process group (-1): Inappropriate ioctl for device bash: no job control in this shell ><rescue> mount /dev/vg_f11x64/lv_root /sysroot EXT4-fs (dm-0): barriers enabled kjournald2 starting: pid 269, dev dm-0:8, commit interval 5 seconds EXT4-fs (dm-0): internal journal on dm-0:8 EXT4-fs (dm-0): delayed allocation enabled EXT4-fs: file extents enabled EXT4-fs: mballoc enabled EXT4-fs (dm-0): mounted filesystem with ordered data mode ><rescue> ls /sysroot/ bin dev home lib64 media opt root selinux sys usr boot etc lib lost+found mnt proc sbin srv tmp var ><rescue> exit
* Prepare for 1.0.71.1.0.71Richard Jones2009-09-222-217/+206
| | | | | | Update version number and update PO files. Put latest version and release date on the website front page.
* Update PO files (no functional change).Richard Jones2009-09-152-3/+3
|
* Update PO files.Richard Jones2009-09-152-5/+5
|
* Update PO files.Richard Jones2009-09-142-1081/+1000
|
* Add echo_daemon commandMatthew Booth2009-09-141-0/+1
| | | | | echo_daemon is a simple echo which can be used to test connectivity between the client and daemon.
* Remove virt-v2v. New repo: http://gitorious.org/virt-v2v/Richard Jones2009-08-203-45/+44
|
* Updated PO files.Richard Jones2009-08-192-804/+869
|
* New 'modprobe' command.Matthew Booth2009-08-181-0/+1
| | | | Allow kernel modules to be loaded into the appliance.
* New commands: mkfs-b, mke2journal*, mke2fs-J*Richard W.M. Jones2009-08-151-0/+1
| | | | | | | | | | mkfs-b: Pass the -b (blocksize) parameter to mkfs. mke2journal and friends: Lets you create external ext2 journals on devices. mke2fs-J and friends: Lets you create ext2/3/4 filesystems with external journals.
* Version 1.0.67.1.0.67Richard Jones2009-08-132-720/+758
|
* Add 'setcon', 'getcon' commands to set and get the SELinux context.Richard Jones2009-08-131-0/+1
|
* Version 1.0.661.0.66Richard Jones2009-08-062-1051/+971
|
* Add resultant change to po/POTFILES.inMatthew Booth2009-08-051-0/+1
| | | | I missed this when committing 7e9cb884492aec243337ffc8e4432a9ff2690956
* build: remove more files added by ./autogen.shJim Meyering2009-08-0410-561/+0
| | | | | | | | | | | | | * po/LINGUAS: Remove file. * po/Makefile.in.in: Likewise. * po/Makevars: Likewise. * po/Rules-quot: Likewise. * po/boldquot.sed: Likewise. * po/en@boldquot.header: Likewise. * po/en@quot.header: Likewise. * po/insert-header.sin: Likewise. * po/quot.sed: Likewise. * po/remove-potcdate.sin: Likewise.
* Add interface to Linux 'inotify' API.Richard W.M. Jones2009-07-311-0/+1
|
* New command: 'fallocate' to (pre-)allocate sized files.Richard W.M. Jones2009-07-311-0/+1
|
* New commands: 'ln', 'ln-f', 'ln-s', 'ln-sf' and 'readlink'.Richard W.M. Jones2009-07-311-0/+2
| | | | | These commands can be used to make hard and symbolic links. The readlink command is used to read existing symbolic links.
* guestfish: Make more strings translatable.Richard Jones2009-07-292-58/+1657
| | | | | However this doesn't yet attempt to translate the POD command documentation. We need a plan to do that.
* Implement '*grep*' family of commands.Richard Jones2009-07-291-0/+1
|
* Updated Polish translations (Piotr Drąg).Richard Jones2009-07-291-100/+162
|
* Version 1.0.65.1.0.65Richard Jones2009-07-292-6/+6
|
* Updated PO files.Richard Jones2009-07-293-182/+223
|
* build: avoid locale-specific changes in generated, VC'd fileJim Meyering2009-07-291-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When I build with LC_ALL=C in my environment, the all-local rule generates po/POTFILES.in that is sorted differently from the on that is checked in: diff --git a/po/POTFILES.in b/po/POTFILES.in index ca01b3d..154915a 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -63,12 +63,11 @@ fish/tilde.c fish/time.c inspector/virt-inspector.pl java/com_redhat_et_libguestfs_GuestFS.c -ocaml/guestfs_c_actions.c ocaml/guestfs_c.c +ocaml/guestfs_c_actions.c perl/bindtests.pl -perl/Guestfs.c -perl/lib/Sys/Guestfs/Lib.pm perl/lib/Sys/Guestfs.pm +perl/lib/Sys/Guestfs/Lib.pm python/guestfs-py.c ruby/ext/guestfs/_guestfs.c src/guestfs-actions.c If we generate that file so that sort always uses the C locale, then, this type of difference will not arise. Here's the patch to fix the rule as well as to reflect the change in the generated file: >From 609e1d1840da25614a7c9e8954e5356050c9f2ad Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Wed, 29 Jul 2009 08:13:35 -0400 Subject: [PATCH] build: avoid locale-specific changes in generated, VC'd file * Makefile.am (all-local): Use LC_ALL=C to sort in C locale. * po/POTFILES.in: Regenerate.
* Version 1.0.631.0.63Richard Jones2009-07-232-132/+394
|
* Add libguestfs-test-tool.Richard Jones2009-07-221-0/+2
| | | | | | | | | | | This is an end-user testing tool, designed to test basic functionality of libguestfs/qemu/kernel combination on the end-user's final host machine. It does not perform a thorough test, but should be enough to find most booting issues. Also this is intended to be used when reporting bugs.
* Version 1.0.62.1.0.62Richard Jones2009-07-172-36/+36
|
* Fix non-srcdir builds: Don't include generated *_protocol.c files in POTFILES.Richard Jones2009-07-161-2/+0
|
* Fix for non-srcdir builds: more misc fixes.Richard Jones2009-07-161-1/+1
|
* More misc fixes for non-srcdir builds.Richard Jones2009-07-161-1/+1
|
* New tool virt-cat: display a file in a virtual machine.Richard Jones2009-07-153-42/+59
| | | | | | | | | This script is just a simpler way to cat a file from a VM. It is otherwise equivalent to using guestfish. virt-cat someguest /etc/fstab virt-cat someguest /var/log/messages | tail
* Make Perl strings translatable using perl-libintl.Richard Jones2009-07-154-60/+547
| | | | | | | | | All Perl strings are now marked as translatable using __"string" or __x("string {placeholder}", placeholder => $_). Perl strings now get copied to the PO files. The po/POTFILES.in file is now updated automagically whenever we add new *.c, *.pl or *.pm files into the repository.
* Version 1.0.59.1.0.59Richard W.M. Jones2009-07-142-83/+192
|
* Version 1.0.58.1.0.58Richard W.M. Jones2009-07-102-108/+108
|
* Update PO files.Richard Jones2009-07-102-110/+160
|
* Additional C files for POTFILES.in.Richard Jones2009-07-101-0/+8
|
* Version 1.0.56.1.0.56Richard W.M. Jones2009-07-072-148/+148
|
* Prepare for 1.0.55. PO files also updated.1.0.55Richard W.M. Jones2009-07-022-34/+62
|
* Updated PO files.Richard W.M. Jones2009-07-022-108/+108
|
* Updated PO files.Richard W.M. Jones2009-07-012-112/+112
|
* Version 1.0.541.0.54Richard W.M. Jones2009-06-292-110/+160
|
* Version 1.0.52.1.0.52Richard W.M. Jones2009-06-242-159/+221
|
* Updated Polish translation (RHBZ#502533).Richard W.M. Jones2009-06-231-7/+22
|
* Version 1.0.50.1.0.50Richard Jones2009-06-222-48/+78
|
* Generated files for 1.0.49.Richard W.M. Jones2009-06-192-47/+49
|
* Version 1.0.48.1.0.48Richard Jones2009-06-162-86/+86
|