mirror of https://github.com/ansible/ansible.git
Fix reset_connection paramiko, winrm, psrp (#72688)
* Ensure we only reset the connection when one has been previously established. Fixes #65812 * Ensure psrp doesn't trace * winrm too * Indentation fixpull/72933/head
parent
36ab3d1189
commit
a3b6485073
@ -0,0 +1,3 @@
|
||||
bugfixes:
|
||||
- paramiko connection plugin - Ensure we only reset the connection when one has been
|
||||
previously established (https://github.com/ansible/ansible/issues/65812)
|
@ -0,0 +1,5 @@
|
||||
- hosts: "{{ target_hosts }}"
|
||||
gather_facts: no
|
||||
tasks:
|
||||
# https://github.com/ansible/ansible/issues/65812
|
||||
- meta: reset_connection
|
Loading…
Reference in New Issue