summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-10-25 21:05:04 +0200
committerLennart Poettering <lennart@poettering.net>2010-10-25 21:05:04 +0200
commit1104f3c1604874c2b742e761b56f4349fe3e1e58 (patch)
treee8d5c6becbbd9f9b2fb21d03cd13f5750b5a113c /src/main.c
parent306a7fd82e790b3c00ba5cf806ccd6c0108061b5 (diff)
systemd: unset HOME and TERM set from the kernel
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 88ba09d43e..9a51a9187f 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);