From: Lennart Poettering Date: Mon, 25 Oct 2010 19:05:04 +0000 (+0200) Subject: systemd: unset HOME and TERM set from the kernel X-Git-Tag: v12~169 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=1104f3c1604874c2b742e761b56f4349fe3e1e58;hp=306a7fd82e790b3c00ba5cf806ccd6c0108061b5 systemd: unset HOME and TERM set from the kernel --- 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);