mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
nspawn: fix detection of missing /proc/self/loginuid
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.
This commit is contained in:
committed by
Lennart Poettering
parent
cb6fa44cb5
commit
13e8ceb84e
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user