You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
702 B
33 lines
702 B
---
|
|
- name: Make Journal persist logs
|
|
ini_file:
|
|
path: /etc/systemd/journald.conf
|
|
section: Journal
|
|
option: Storage
|
|
value: persistent
|
|
mode: '0644'
|
|
backup: yes
|
|
notify: ['Restart journald']
|
|
become: yes
|
|
|
|
- name: Make Journal compress logs
|
|
ini_file:
|
|
path: /etc/systemd/journald.conf
|
|
section: Journal
|
|
option: Compress
|
|
value: 'true'
|
|
mode: '0644'
|
|
backup: yes
|
|
notify: ['Restart journald']
|
|
become: yes
|
|
|
|
- name: Make Journal store maximum of 30 days of logs
|
|
ini_file:
|
|
path: /etc/systemd/journald.conf
|
|
section: Journal
|
|
option: MaxRetentionSec
|
|
value: '1month'
|
|
mode: '0644'
|
|
backup: yes
|
|
notify: ['Restart journald']
|
|
become: yes
|
|
|