9 lines
169 B
Plaintext
9 lines
169 B
Plaintext
|
# backup hosts
|
||
|
{% for b in backupservers %}
|
||
|
Host {{ b.fqdn }}
|
||
|
StrictHostKeyChecking no
|
||
|
{% if b.port is defined %}
|
||
|
Port {{ b.port }}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|