Re: [Libguestfs] [PATCH] git: Add 'git-publish' config file

2022-05-18 Thread Richard W.M. Jones
Thanks - I pushed both patches. Now to see if I can remember how to update the website ... Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-p2v converts physical machines to

Re: [Libguestfs] [PATCH] website: Remove .git from 'git clone' URL

2022-05-18 Thread Kashyap Chamarthy
On Wed, May 18, 2022 at 03:46:41PM +0200, Kashyap Chamarthy wrote: Nit: A more correct patch summary is: "Update 'git clone' protocol" [...] -- /kashyap ___ Libguestfs mailing list Libguestfs@redhat.com

[Libguestfs] [PATCH] git: Add 'git-publish' config file

2022-05-18 Thread Kashyap Chamarthy
The `git-publish`[1] tool is a wrapper around `git-format-patch` and `git-send-email`. It's a handy tool that automates some of the tedious aspects of manual patch submission: - Submitting a patch to the list (with a small config in place) is as simple as `git publish` - On next

[Libguestfs] [PATCH] git: Add 'git-publish' config file

2022-05-18 Thread Kashyap Chamarthy
The `git-publish`[1] tool is a wrapper around `git-format-patch` and `git-send-email`. It's a handy tool that automates some of the tedious aspects of manual patch submission: - Submitting a patch to the list (with a small config in place) is as simple as `git publish` - On next

[Libguestfs] [PATCH] website: Remove .git from 'git clone' URL

2022-05-18 Thread Kashyap Chamarthy
GitHub dropped[1] support for .git protocol, so cloing with "git://" will fail. Use "https://; instead. [1] https://github.blog/2021-09-01-improving-git-protocol-security-github/ Signed-off-by: Kashyap Chamarthy --- website/index.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [Libguestfs] ovirt VM image to BM

2022-05-18 Thread Richard W.M. Jones
On Wed, May 18, 2022 at 01:56:36PM +0100, Richard W.M. Jones wrote: > > On Wed, May 18, 2022 at 01:20:27PM +0200, Guilherme De Oliveira Santos wrote: > > Greetings masters, > > > > I got pointed to you guys as experts on smtg I'm struggling with. > > I'm trying to move an ovirt vm raw image to a

Re: [Libguestfs] ovirt VM image to BM

2022-05-18 Thread Richard W.M. Jones
On Wed, May 18, 2022 at 01:20:27PM +0200, Guilherme De Oliveira Santos wrote: > Greetings masters, > > I got pointed to you guys as experts on smtg I'm struggling with. > I'm trying to move an ovirt vm raw image to a bm machine and though [bm = baremetal] > I could do it successfully using dd

[Libguestfs] ovirt VM image to BM

2022-05-18 Thread Guilherme De Oliveira Santos
Greetings masters, I got pointed to you guys as experts on smtg I'm struggling with. I'm trying to move an ovirt vm raw image to a bm machine and though I could do it successfully using dd (got able to see and work with the partitions and the data fine), I couldn't boot the disk. It may be an

Re: [Libguestfs] [v2v PATCH 2/2] -i vmx -it ssh: document percent encoding in ssh URIs in more detail

2022-05-18 Thread Richard W.M. Jones
On Wed, May 18, 2022 at 08:49:30AM +0200, Laszlo Ersek wrote: > On the vmfs file system, ESXi encodes guest name characters that it > considers reserved with fairly unpredictable, proprietary rules. For > example, the ESXi webgui forbids backslash characters (\) completely, a > percent sign (%) is

Re: [Libguestfs] [v2v PATCH 1/2] docs/*.pod: strip trailing space characters

2022-05-18 Thread Richard W.M. Jones
On Wed, May 18, 2022 at 08:49:29AM +0200, Laszlo Ersek wrote: > Remove any space characters that directly precede a newline character. > > Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1938954 > Signed-off-by: Laszlo Ersek > --- > > Notes: > I've verified in the rendered HTMLs that

Re: [Libguestfs] [libguestfs PATCH] guestfs.pod: document encrypted RBD disk limitation

2022-05-18 Thread Richard W.M. Jones
On Wed, May 18, 2022 at 10:30:14AM +0200, Laszlo Ersek wrote: > Under "REMOTE STORAGE", the "NETWORK BLOCK DEVICE" section already > documents some limitations. Turns out we need to describe a quirky > exception for accessing encrypted RBD disks, too. > > Bugzilla:

[Libguestfs] [libguestfs PATCH] guestfs.pod: document encrypted RBD disk limitation

2022-05-18 Thread Laszlo Ersek
Under "REMOTE STORAGE", the "NETWORK BLOCK DEVICE" section already documents some limitations. Turns out we need to describe a quirky exception for accessing encrypted RBD disks, too. Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2033247 Signed-off-by: Laszlo Ersek --- lib/guestfs.pod |

[Libguestfs] [v2v PATCH 1/2] docs/*.pod: strip trailing space characters

2022-05-18 Thread Laszlo Ersek
Remove any space characters that directly precede a newline character. Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1938954 Signed-off-by: Laszlo Ersek --- Notes: I've verified in the rendered HTMLs that this whitespace stripping does not break up indented blocks into smaller

[Libguestfs] [v2v PATCH 0/2] document percent encoding in ssh URIs in more detail

2022-05-18 Thread Laszlo Ersek
https://bugzilla.redhat.com/show_bug.cgi?id=1938954 Determining the ssh:// URI (for -i vmx -it ssh) is not intuitive if the guest name includes characters outside of the portable filename character set. Expand the "VMX: Construct the SSH URI" section of the documentation. Thanks, Laszlo Laszlo

[Libguestfs] [v2v PATCH 2/2] -i vmx -it ssh: document percent encoding in ssh URIs in more detail

2022-05-18 Thread Laszlo Ersek
On the vmfs file system, ESXi encodes guest name characters that it considers reserved with fairly unpredictable, proprietary rules. For example, the ESXi webgui forbids backslash characters (\) completely, a percent sign (%) is encoded as %25, and a dollar sign ($) is replaced with underscore