13 lines
331 B
YAML
13 lines
331 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_distribution == "Ubuntu"'
|
|
notify: "restart journald"
|
|
tags: "journald"
|