Files
fedora-infra_ansible/roles/abrt/faf/tasks/config.yml
Ryan Lerch 47c68f478d ansiblelint fixes - fqcn[action-core] - template to ansible.builtin.template
Replaces references to template: with ansible.builtin.template

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2025-01-15 11:30:29 +10:00

23 lines
558 B
YAML

---
- name: Provide /etc/faf/faf.conf
ansible.builtin.template:
src: etc-faf-faf.conf.j2
dest: /etc/faf/faf.conf
# setup fedora-messaging
- name: Create the config folder for fedora-messaging
ansible.builtin.file:
path: /etc/fedora-messaging/
owner: root
group: root
mode: "0755"
state: directory
when: faf_with_fedmsg|bool
- name: Provide configuration for fedora-messaging
ansible.builtin.template:
src: etc-fedora-messaging-config.toml.j2
dest: /etc/fedora-messaging/config.toml
when: faf_with_fedmsg|bool