ansible-common/tasks/motd.yml
Frank Villaro-Dixon 3e20eb8828 Create basic repo
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-10-04 18:52:39 +02:00

25 lines
542 B
YAML

- name: Set motd file
ansible.builtin.copy:
content: |
WARNING
WARNING
WARNING
{{ inventory_hostname }} is managed by Ansible
Repo is https://forge.k3s.fr/{{ ansible_cfg_repo }}
Don't update by hand, you fucker!
Thanks!
dest: /etc/motd
- name: Set sshd Banner option to motd
lineinfile:
dest: /etc/ssh/sshd_config
regexp: ""
line: ""
state: present
with_items:
- regexp: "^#?Banner"
line: "Banner /etc/issue"
notify: restart sshd