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