mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-03-15 09:10:19 +00:00
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
|