common/tasks/journald.yaml
Simon Cornet 2272aa6a58
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: migrate bare ansible_* facts to ansible_facts[] syntax
2026-05-19 09:19:03 +02:00

13 lines
340 B
YAML

---
# configure journald
- name: "syslog - config - configure journald"
ansible.builtin.template:
src: "templates/journald/journald.conf.j2"
dest: "/etc/systemd/journald.conf"
owner: "root"
group: "root"
mode: "0644"
when: 'ansible_facts["distribution"] == "Ubuntu"'
notify: "restart journald"
tags: "journald"