1
0
Fork 0
ansible-collection-base/playbooks/motd.yml
Nis Wechselberg dd603044fc
Initial base playbooks
Signed-off-by: Nis Wechselberg <enbewe@enbewe.de>
2025-05-07 15:01:08 +02:00

14 lines
334 B
YAML

---
- name: 'Configure Motd components'
hosts: 'all'
tasks:
- name: 'Remove components from motd, that are not needed'
become: true
ansible.builtin.file:
state: 'file'
path: '/etc/update-motd.d/{{ item }}'
mode: 'u=rw,g=r,o=r'
loop:
- '10-help-text'
- '50-motd-news'