Tanguy Herbron f983f9f2ed feat: Align configuration and Makefile
This contains a lot of changes, including better system configuration for some issues discovered during testing, and minor tweaking for better user experience when doing maintenance
2025-03-22 19:26:04 +01:00

21 lines
436 B
YAML

---
- name: Ensures journalctl dir exists
file:
path: /etc/systemd
state: directory
- name: Configure journalctl
copy:
src: ../templates/journald.conf
dest: /etc/systemd/journald.conf
backup: yes
register: journalctl_conf
- name: Restart journalctl service
ansible.builtin.systemd:
name: systemd-journald
state: restarted
daemon_reload: true
enabled: true
when: journalctl_conf.changed