From 53948a22aa68fdc06aff2b4eb8c1ea05b612872b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 21 May 2019 19:26:12 +0200 Subject: [PATCH] core: unset HOME=/ that the kernel gives us Partially fixes #12389. %h would return "/" in a machine, but "/root" in a container. Let's fix this by resetting $HOME to the expected value. (cherry picked from commit 9d48671c62de133a2b9fe7c31e70c0ff8e68f2db) Gbp-Pq: Name core-unset-HOME-that-the-kernel-gives-us.patch --- src/core/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/main.c b/src/core/main.c index 46db4712..dffead5b 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1504,6 +1504,11 @@ static int fixup_environment(void) { if (setenv("TERM", t, 1) < 0) return -errno; + /* The kernels sets HOME=/ for init. Let's undo this. */ + if (path_equal_ptr(getenv("HOME"), "/") && + unsetenv("HOME") < 0) + log_warning_errno(errno, "Failed to unset $HOME: %m"); + return 0; } -- 2.30.2