ansible-ops-management/tasks/banners.yml

10 lines
151 B
YAML
Raw Normal View History

2023-04-22 08:24:19 +00:00
---
- name: Default motd banner
ansible.builtin.copy:
src: "etc/motd"
dest: "/etc/motd"
owner: root
group: root
mode: '0644'
...