diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-09 00:16:36 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-09 00:16:40 +0200 |
commit | 2c1671f077f50afec2bc7356ebe77f34ed9a3691 (patch) | |
tree | 3ccb5c391ef4054fa5e65cd46cc62dd78c3004e2 /roles | |
parent | v0.0.4 (diff) | |
download | infra-ansible-2c1671f077f50afec2bc7356ebe77f34ed9a3691.tar.gz infra-ansible-2c1671f077f50afec2bc7356ebe77f34ed9a3691.zip |
journald: set default level to warning
My journals are still too messy.
Diffstat (limited to '')
-rw-r--r-- | roles/journald/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/journald/tasks/main.yml b/roles/journald/tasks/main.yml index 2d7ce15..12c1152 100644 --- a/roles/journald/tasks/main.yml +++ b/roles/journald/tasks/main.yml @@ -6,7 +6,7 @@ dest: /etc/systemd/journald.conf section: Journal option: MaxLevelStore - value: notice + value: warning register: edited - name: Restart systemd-journald |