ansible-borgbackup/templates/ssh.config.j2

9 lines
169 B
Plaintext
Raw Normal View History

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