10 lines
151 B
YAML
10 lines
151 B
YAML
|
---
|
||
|
- name: Default motd banner
|
||
|
ansible.builtin.copy:
|
||
|
src: "etc/motd"
|
||
|
dest: "/etc/motd"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: '0644'
|
||
|
...
|