ansible-roles/evolinux-base/tasks/motd.yml
Jérémy Lecour debc4a82ca
All checks were successful
continuous-integration/drone/push Build is passing
Use 'loop' syntax instead of 'with_first_found'
2021-05-04 13:39:47 +02:00

18 lines
376 B
YAML

---
- name: Deploy custom motd
template:
src: "{{ item }}"
dest: /etc/motd
force: True
owner: root
group: root
mode: "0644"
loop: "{{ query('first_found', templates, errors='ignore') }}"
vars:
templates:
- "motd/motd.{{ inventory_hostname }}.j2"
- "motd/motd.{{ host_group }}.j2"
- "motd/motd.default.j2"
tags:
- motd