search for: 86bc8c0a

Displaying 2 results from an estimated 2 matches for "86bc8c0a".

2020 Jan 16
2
[PATCH v2] add versioned directory for guest agent on EL8
There was no source directory for EL8 guest agent (only EL6 and EL7). RHBZ#1791802 Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/windows_virtio.ml | 1 + 1 file changed, 1 insertion(+) diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml index 5ec7664b..86bc8c0a 100644 --- a/v2v/windows_virtio.ml +++ b/v2v/windows_virtio.ml @@ -192,6 +192,7 @@ and install_linux_tools g inspect = (match inspect.i_major_version with | 6 -> Some "el6" | 7 -> Some "el7" + | 8 -> Some "el8" | _ -> No...
2020 Jan 16
0
Re: [PATCH v2] add versioned directory for guest agent on EL8
...guest agent (only EL6 and EL7). > > RHBZ#1791802 > > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> > --- > v2v/windows_virtio.ml | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml > index 5ec7664b..86bc8c0a 100644 > --- a/v2v/windows_virtio.ml > +++ b/v2v/windows_virtio.ml > @@ -192,6 +192,7 @@ and install_linux_tools g inspect = > (match inspect.i_major_version with > | 6 -> Some "el6" > | 7 -> Some "el7" > + | 8 -> Some &...