13 lines
236 B
YAML
13 lines
236 B
YAML
- name: deploy custom motd
|
|
hosts: apache-intranet
|
|
become: true
|
|
|
|
tasks:
|
|
|
|
- name: replace base motd file
|
|
copy:
|
|
src: ../configs/motd
|
|
dest: /etc/motd
|
|
owner: root
|
|
group: root
|
|
mode: 0644 |