Displaying 5 results from an estimated 5 matches for "d20194b".
2016 Aug 01
3
[PATCH] v2v: fixed file_owner function
..."` the returned value
was "filesystemyum" (i.e. "filesystem" + "yum").
Signed-off-by: Tom?? Golembiovsk? <tgolembi at redhat.com>
---
v2v/linux.ml | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/v2v/linux.ml b/v2v/linux.ml
index d20194b..aeff5c5 100644
--- a/v2v/linux.ml
+++ b/v2v/linux.ml
@@ -99,14 +99,18 @@ let rec file_owner g inspect path =
(* Although it is possible in RPM for multiple packages to own
* a file, this deliberately only returns one package.
*)
- let cmd = [| "rpm"; "-qf...
2016 Aug 03
1
Re: [PATCH] v2v: fixed file_owner function
...em" + "yum").
> >
> > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
> > ---
> > v2v/linux.ml | 8 ++++++--
> > 1 file changed, 6 insertions(+), 2 deletions(-)
> >
> > diff --git a/v2v/linux.ml b/v2v/linux.ml
> > index d20194b..aeff5c5 100644
> > --- a/v2v/linux.ml
> > +++ b/v2v/linux.ml
> > @@ -99,14 +99,18 @@ let rec file_owner g inspect path =
> > (* Although it is possible in RPM for multiple packages to own
> > * a file, this deliberately only returns one package.
> &g...
2016 Aug 03
0
Re: [PATCH] v2v: fixed file_owner function
...filesystemyum" (i.e. "filesystem" + "yum").
>
> Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
> ---
> v2v/linux.ml | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/v2v/linux.ml b/v2v/linux.ml
> index d20194b..aeff5c5 100644
> --- a/v2v/linux.ml
> +++ b/v2v/linux.ml
> @@ -99,14 +99,18 @@ let rec file_owner g inspect path =
> (* Although it is possible in RPM for multiple packages to own
> * a file, this deliberately only returns one package.
> *)
> - let...
2016 Jul 13
6
[PATCH 0/5] Fix SELinux
We can use the setfiles(8) command to relabel the guest filesystem,
even though we don't have a policy loaded nor SELinux enabled in the
appliance kernel.
This also deprecates or removes the old and broken SELinux support.
This patch isn't quite complete - I would like to add some tests to
the new API. I'm posting here to garner early feedback.
Rich.
2016 Jul 14
10
[PATCH v2 0/7] Fix SELinux
v1 -> v2:
- Add simple test of the setfiles API.
- Use SELinux_relabel module in virt-v2v (instead of touch /.autorelabel).
- Small fixes.
Rich.