File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,13 @@ v0.3.4.dev0
2222
2323* :gh:issue: `929 ` Support Ansible 6 and ansible-core 2.13
2424* :gh:issue: `832 ` Fix runtime error when using the ansible.builtin.dnf module multiple times
25- * :gh:issue: `925 ` :class: `ansible_mitogen.connection.Connection ` no longer tries to close the
25+ * :gh:issue: `925 ` :class: `ansible_mitogen.connection.Connection ` no longer tries to close the
2626 connection on destruction. This is expected to reduce cases of `mitogen.core.Error: An attempt
2727 was made to enqueue a message with a Broker that has already exitted `. However it may result in
2828 resource leaks.
2929* :gh:issue: `659 ` Removed :mod: `mitogen.compat.simplejson `, not needed with Python 2.7+, contained Python 3.x syntax errors
3030* :gh:issue: `983 ` CI: Removed PyPI faulthandler requirement from tests
31+ * :gh:issue: `998 ` SSH: Added support for TOTP password prompts (i.e. 'Verification code: '), as used by google-authenticator-libpam
3132
3233v0.3.3 (2022-06-03)
3334-------------------
Original file line number Diff line number Diff line change 6666)
6767
6868# sshpass uses 'assword' because it doesn't lowercase the input.
69+ # 'password': standard password prompt
70+ # 'verification code': TOTP prompt(as used by e.g. google-authenticator-libpam)
71+ # These should also match 'password & verification code' for password and TOTP
72+ # prompt (as used by e.g. google-authenticator-libpam)
6973PASSWORD_PROMPT_PATTERN = re .compile (
70- b ('password' ),
74+ b ('( password|verification code) ' ),
7175 re .I
7276)
7377
You can’t perform that action at this time.
0 commit comments