diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-10-25 21:05:04 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-25 21:05:04 +0200 |
commit | 1104f3c1604874c2b742e761b56f4349fe3e1e58 (patch) | |
tree | e8d5c6becbbd9f9b2fb21d03cd13f5750b5a113c /src/main.c | |
parent | 306a7fd82e790b3c00ba5cf806ccd6c0108061b5 (diff) |
systemd: unset HOME and TERM set from the kernel
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
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); |