You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
365 B
YAML

---
- 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