Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory (tlog bug fix and enhancement update), and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2022:2139
Verified Version :: tlog-12.1-1.el8_6.x86_64 Results :: Before update ansible-playbook hung on ssh connection. $ ansible-playbook -i 127.0.0.1, test.yaml PLAY [all] ******************************************************************************************** TASK [run a command] ********************************************************************************** ^C [ERROR]: User interrupted execution After update: # cat /etc/sssd/conf.d/sssd-session-recording.conf [sssd] enable_files_domain=true services=nss [session_recording] scope=all exclude_users= exclude_groups= # su - localuser1 Last login: Wed Apr 27 11:27:26 EDT 2022 on pts/0 Locale charset is ANSI_X3.4-1968 (ASCII) Assuming locale environment is lost and charset is UTF-8 ATTENTION! Your session is being recorded! $ cat ansible.cfg [ssh_connection] pipelining=True $ cat test.yaml --- - hosts: all gather_facts: false tasks: - name: run a command command: dmesg - name: copy a file copy: src: test.yaml dest: /tmp/test_file.yaml $ ansible-playbook -i 127.0.0.1, test.yaml PLAY [all] ******************************************************************************************** TASK [run a command] ********************************************************************************** changed: [127.0.0.1] TASK [copy a file] ************************************************************************************ changed: [127.0.0.1] PLAY RECAP ******************************************************************************************** 127.0.0.1 : ok=2 changed=2 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0