Michael Grote
7a24089031
Reviewed-on: #584 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
15 lines
326 B
YAML
15 lines
326 B
YAML
---
|
|
- name: source ubuntu vars
|
|
ansible.builtin.include_vars: ubuntu.yml
|
|
|
|
- name: template sshd_config
|
|
become: true
|
|
ansible.builtin.template:
|
|
src: ubuntu.j2
|
|
dest: /etc/ssh/sshd_config
|
|
owner: root
|
|
group: root
|
|
mode: "0644"
|
|
validate: "/usr/sbin/sshd -T -f %s"
|
|
backup: true
|
|
notify: restart sshd
|