- name: "motd : set motd" ansible.builtin.copy: src: "{{ item }}" dest: "/etc/motd" mode: 0644 loop: "{{ [lookup('ansible.builtin.first_found', _file_path, skip=true)] | flatten }}" vars: _file_path: "{{ system_base_motd_dir }}/{{ ansible_hostname }}" when: system_base_motd_dir is defined