perf: Windows change secret check_conn_after_change

pull/15938/head
feng 2025-08-26 14:53:31 +08:00 committed by feng626
parent 115eb7c15a
commit bee07db900
4 changed files with 12 additions and 4 deletions

View File

@ -28,4 +28,6 @@
vars:
ansible_user: "{{ account.username }}"
ansible_password: "{{ account.secret }}"
when: account.secret_type == "password"
when:
- account.secret_type == "password"
- check_conn_after_change

View File

@ -31,5 +31,7 @@
login_password: "{{ account.secret }}"
login_secret_type: "{{ account.secret_type }}"
login_private_key_path: "{{ account.private_key_path }}"
when: account.secret_type == "password"
when:
- account.secret_type == "password"
- check_conn_after_change
delegate_to: localhost

View File

@ -28,4 +28,6 @@
vars:
ansible_user: "{{ account.username }}"
ansible_password: "{{ account.secret }}"
when: account.secret_type == "password"
when:
- account.secret_type == "password"
- check_conn_after_change

View File

@ -31,5 +31,7 @@
login_password: "{{ account.secret }}"
login_secret_type: "{{ account.secret_type }}"
login_private_key_path: "{{ account.private_key_path }}"
when: account.secret_type == "password"
when:
- account.secret_type == "password"
- check_conn_after_change
delegate_to: localhost