13 lines
293 B
YAML
13 lines
293 B
YAML
|
# This changes permissions so update motd can not read it
|
||
|
- name: clean motd
|
||
|
file:
|
||
|
state: file
|
||
|
path: /etc/update-motd.d/{{ item }}
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: "0000"
|
||
|
with_items:
|
||
|
- 10-help-text
|
||
|
- 50-landscape-sysinfo
|
||
|
- 50-motd-news
|
||
|
- 91-release-upgrade
|