ansible-borgbackup/templates/ssh.config.j2

9 lines
174 B
Plaintext
Raw Normal View History

2017-09-07 18:35:01 +00:00
# backup hosts
2017-10-01 17:51:38 +00:00
{% for b in borgbackup_servers %}
2017-09-07 18:35:01 +00:00
Host {{ b.fqdn }}
StrictHostKeyChecking no
{% if b.port is defined %}
Port {{ b.port }}
{% endif %}
{% endfor %}