blob: ff4b2b0020e78d3b5760e980d09c504b2d5c76c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
- name: log to ramdisk
lineinfile:
path: /etc/systemd/journald.conf
regexp: '^#?Storage='
line: 'Storage=volatile'
notify: restart systemd-journald
- name: save log for max 1 day
lineinfile:
path: /etc/systemd/journald.conf
regexp: '^#?MaxRetentionSec='
line: 'MaxRetentionSec=1day'
notify: restart systemd-journald
|