diff options
author | binary <me@rgoncalves.se> | 2021-02-02 11:45:23 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-02-02 11:45:23 +0100 |
commit | 027606884d613f0daf0bd0e876bfba22a4954fa3 (patch) | |
tree | e366cdb922810e9a6f4be721af59dc53e030e0af | |
parent | a61cf16328bb9ba4b4a9989f74fcfb538ab6fa37 (diff) | |
download | infrastructure-027606884d613f0daf0bd0e876bfba22a4954fa3.tar.gz |
Fix missing -W to -w
-rw-r--r-- | roles/sshdns/templates/generate_dns.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/sshdns/templates/generate_dns.j2 b/roles/sshdns/templates/generate_dns.j2 index a521104..866e9aa 100644 --- a/roles/sshdns/templates/generate_dns.j2 +++ b/roles/sshdns/templates/generate_dns.j2 @@ -11,7 +11,7 @@ {##} # {{ h.ansible_host }} -Match originalhost {{ h.ansible_host }} exec "ping -c 1 -W 5 {{ dcontroller.ip.in }} && ! ping -c 1 -w 5 {{ h.ip.out }}" +Match originalhost {{ h.ansible_host }} exec "ping -c 1 -w 5 {{ dcontroller.ip.in }} && ! ping -c 1 -w 5 {{ h.ip.out }}" HostName {{ h.ip.in }} Port {{ _port }} |