diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-19 12:36:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-19 12:38:45 +0200 |
commit | edc3797f7cd9e37c24e5241cac3263e7c918f732 (patch) | |
tree | 789f94f81ffa82ccaacabfc857f1c774f4d88d3c /src/journal/journald-server.h | |
parent | 9eecdbc354c180885f10415b01fee126f3bb34aa (diff) | |
download | systemd-edc3797f7cd9e37c24e5241cac3263e7c918f732.tar.gz |
journald: make SplitMode=uid the default
Now that we actually can distuingish system and normal users there's no
point in taking session information into account anymore when splitting
up logs.
This has the beenfit with that coredump information will actually end up
in each user's own journal.
Diffstat (limited to 'src/journal/journald-server.h')
-rw-r--r-- | src/journal/journald-server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-server.h b/src/journal/journald-server.h index e468b82931..42a2235ba9 100644 --- a/src/journal/journald-server.h +++ b/src/journal/journald-server.h @@ -45,8 +45,8 @@ typedef enum Storage { } Storage; typedef enum SplitMode { - SPLIT_LOGIN, SPLIT_UID, + SPLIT_LOGIN, SPLIT_NONE, _SPLIT_MAX, _SPLIT_INVALID = -1 |