mirror of
https://github.com/systemd/systemd.git
synced 2025-08-15 01:49:58 +03:00
journald: create /run/log/journal with the correct access modes
This commit is contained in:
@ -990,7 +990,10 @@ static int system_journal_open(Server *s) {
|
||||
/* OK, we really need the runtime journal, so create
|
||||
* it if necessary. */
|
||||
|
||||
(void) mkdir_parents(fn, 0755);
|
||||
(void) mkdir("/run/log", 0755);
|
||||
(void) mkdir("/run/log/journal", 0755);
|
||||
(void) mkdir_parents(fn, 0750);
|
||||
|
||||
r = journal_file_open_reliably(fn, O_RDWR|O_CREAT, 0640, s->compress, false, &s->runtime_metrics, s->mmap, NULL, &s->runtime_journal);
|
||||
free(fn);
|
||||
|
||||
|
Reference in New Issue
Block a user