ansible-roles/evolinux-base/tasks/motd.yml
Jérémy Lecour 55ad6882b5
All checks were successful
continuous-integration/drone/push Build is passing
evolinux-base: forgotten case for first-found lookup
2021-06-28 15:26:54 +02:00

19 lines
442 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) }}"
vars:
templates:
- "templates/motd/motd.{{ inventory_hostname }}.j2"
- "templates/motd/motd.{{ host_group | default('all') }}.j2"
- "templates/motd/motd.default.j2"
- "templates/motd.default.j2"
tags:
- motd