common/tasks/journald.yaml
Simon Cornet 210fbd68f4
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: cleanup tag mess
Tag only in main.yaml, tasks inherit them.
2026-05-20 09:40:02 +02:00

12 lines
321 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"