14 lines
334 B
YAML
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'
|