ansible-borgbackup/templates/ssh.config.j2

9 lines
174 B
Django/Jinja

# backup hosts
{% for b in borgbackup_servers %}
Host {{ b.fqdn }}
StrictHostKeyChecking no
{% if b.port is defined %}
Port {{ b.port }}
{% endif %}
{% endfor %}