Remove default filter from junos switch timeout

In ansible 2.3, the default filter appears to make the timeout be interpreted as a
string rather than a number, which causes the netconf client ncclient to barf.
As we always define a timeout, this default seems unnecessary anyway so let's
remove it.
This commit is contained in:
Mark Goddard 2017-10-11 16:25:34 +00:00
parent 1169ce111c
commit c7bcdf2cf9
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ switch_junos_provider:
username: "{{ ansible_user }}"
password: "{{ ansible_ssh_pass|default(omit) }}"
ssh_keyfile: "{{ ansible_ssh_private_key_file|default(omit) }}"
timeout: "{{ switch_junos_timeout|default(omit) }}"
timeout: "{{ switch_junos_timeout }}"
###############################################################################
# Configuration format.