10 lines
146 B
YAML
10 lines
146 B
YAML
|
# This will set our motd
|
||
|
---
|
||
|
- name: Set MOTD
|
||
|
copy:
|
||
|
src: ../files/motd
|
||
|
dest: /etc/motd
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0644
|