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>
This commit is contained in:
parent
3c41882bb0
commit
47c68f478d
149 changed files with 324 additions and 324 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: Add motd to system
|
||||
template: src=/srv/web/infra/hosts/motd.j2 dest=/etc/motd
|
||||
ansible.builtin.template: src=/srv/web/infra/hosts/motd.j2 dest=/etc/motd
|
||||
tags:
|
||||
- motd
|
||||
- base
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
- yumrepos
|
||||
|
||||
- name: Put fedora repos on primary architecture systems
|
||||
template: src="{{ files }}/common/{{ item }}" dest="/etc/yum.repos.d/{{ item }}"
|
||||
ansible.builtin.template: src="{{ files }}/common/{{ item }}" dest="/etc/yum.repos.d/{{ item }}"
|
||||
with_items:
|
||||
- fedora.repo
|
||||
- fedora-updates.repo
|
||||
|
@ -89,7 +89,7 @@
|
|||
- yumrepos
|
||||
|
||||
- name: Put fedora repos on secondary architecture systems
|
||||
template: src="{{ files }}/common/{{ item }}-secondary" dest="/etc/yum.repos.d/{{ item }}"
|
||||
ansible.builtin.template: src="{{ files }}/common/{{ item }}-secondary" dest="/etc/yum.repos.d/{{ item }}"
|
||||
with_items:
|
||||
- fedora.repo
|
||||
- fedora-updates.repo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue