diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-08-01 20:52:18 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-08-01 20:52:18 +0200 |
commit | 4c12626c8e3491570b395d68380543e10c98ad33 (patch) | |
tree | 6cc39f5ee23aa41accc1baffb7db5a7444859fce /src/shutdown.c | |
parent | 07f8a4aa49a84ec61513788d5ddf521f3de5a0ba (diff) |
umask: change default umask to 0022 just to be sure, and set it explicitly in all binaries, in order to make sure it is set when started from the terminal
Diffstat (limited to 'src/shutdown.c')
-rw-r--r-- | src/shutdown.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shutdown.c b/src/shutdown.c index 52bad21971..1c6dc6597b 100644 --- a/src/shutdown.c +++ b/src/shutdown.c @@ -295,6 +295,8 @@ int main(int argc, char *argv[]) { log_set_target(LOG_TARGET_CONSOLE); /* syslog will die if not gone yet */ log_open(); + umask(0022); + if (getpid() != 1) { log_error("Not executed by init (pid 1)."); r = -EPERM; |