mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-02 14:30:45 +08:00
Replaces references to template: with ansible.builtin.template Signed-off-by: Ryan Lerch <rlerch@redhat.com>
23 lines
558 B
YAML
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
|