Add playbooks/motd.yml

This commit is contained in:
2026-06-13 13:40:56 +01:00
parent 8606eb0f6d
commit fcd45a99a4

13
playbooks/motd.yml Normal file
View File

@@ -0,0 +1,13 @@
- 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