aboutsummaryrefslogtreecommitdiffstats
path: root/roles/workstation/templates/ssh.config.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/workstation/templates/ssh.config.j2')
-rw-r--r--roles/workstation/templates/ssh.config.j26
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/workstation/templates/ssh.config.j2 b/roles/workstation/templates/ssh.config.j2
index 2915a1a..2a3a903 100644
--- a/roles/workstation/templates/ssh.config.j2
+++ b/roles/workstation/templates/ssh.config.j2
@@ -5,7 +5,13 @@
{% set command = "pgrep wg && ! ping -c 1 -w 1 %s" % h.__ip.external %}
Match originalHost {{ h.inventory_hostname }} exec "{{ command }}"
HostName {{ h.__ip.internal }}
+{% if h.ansible_port is defined %}
+ Port {{ h.ansible_port }}
+{% endif %}
Match originalHost {{ h.inventory_hostname }}
HostName {{ h.__ip.external }}
+{% if h.ansible_port is defined %}
+ Port {{ h.ansible_port }}
+{% endif %}
{% endcall %}
remember that computers suck.