From 1104f3c1604874c2b742e761b56f4349fe3e1e58 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 25 Oct 2010 21:05:04 +0200 Subject: [PATCH] systemd: unset HOME and TERM set from the kernel --- src/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.c b/src/main.c index 88ba09d43..9a51a9187 100644 --- a/src/main.c +++ b/src/main.c @@ -973,6 +973,11 @@ int main(int argc, char *argv[]) { "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", arg_running_as == MANAGER_SYSTEM); + /* Unset some environment variables passed in from the kernel + * that don't really make sense for us. */ + unsetenv("HOME"); + unsetenv("TERM"); + /* Move out of the way, so that we won't block unmounts */ assert_se(chdir("/") == 0); -- 2.30.2