Files
2026-06-13 13:40:56 +01:00

13 lines
236 B
YAML

- name: deploy custom motd
hosts: apache-intranet
become: true
tasks:
- name: replace base motd file
copy:
src: ../configs/motd
dest: /etc/motd
owner: root
group: root
mode: 0644