Files
2026-07-05 08:40:18 +00:00

18 lines
352 B
YAML

- name: deploy custom motd
hosts: alma
become: true
tasks:
- name: remove bloat default motd file
ansible.builtin.file:
path: /etc/motd.d/cockpit
state: absent
- name: replace base motd file
copy:
src: ../config/motd
dest: /etc/motd
owner: root
group: root
mode: 0644