All checks were successful
ci/woodpecker/push/linting Pipeline was successful
Tag only in main.yaml, tasks inherit them.
12 lines
321 B
YAML
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"
|