On Tue, 25.02.14 17:19, Tero Roponen ([email protected]) wrote:

> Running 'systemd-nspawn -D /srv/Fedora/' gave me this error:
>  Failed to read /proc/self/loginuid: No such file or directory
> 
>  Container Fedora failed with error code 1.
> 
> This patch fixes the problem.

Thanks!

Applied!

> 
> diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c
> index 1a02935..e6f8ce7 100644
> --- a/src/nspawn/nspawn.c
> +++ b/src/nspawn/nspawn.c
> @@ -1349,7 +1349,7 @@ static int reset_audit_loginuid(void) {
>                  return 0;
>  
>          r = read_one_line_file("/proc/self/loginuid", &p);
> -        if (r == -EEXIST)
> +        if (r == -ENOENT)
>                  return 0;
>          if (r < 0) {
>                  log_error("Failed to read /proc/self/loginuid: %s", 
> strerror(-r));
> 
> _______________________________________________
> systemd-devel mailing list
> [email protected]
> http://lists.freedesktop.org/mailman/listinfo/systemd-devel


Lennart

-- 
Lennart Poettering, Red Hat
_______________________________________________
systemd-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/systemd-devel

Reply via email to