This role configures a system for Terminal session recording.
The role will configure tlog to log recording data to the systemd journal.
This role is only supported on RHEL8/CentOS8 and Fedora distributions.
This role requires the ini_file
module from community.general
. If you are
using ansible-core
you must install that collection.
ansible-galaxy collection install -vv -r meta/collection-requirements.yml
If you are using Ansible Engine 2.9, or are using an Ansible bundle which
includes these collections/modules, you should have to do nothing.
Configure session recording with SSSD, the preferred way of managing recorded users or groups:
tlog_use_sssd
(default: yes
)Configure SSSD recording scope - all
/ some
/ none
:
tlog_scope_sssd
(default: none
)YAML list of users to be recorded:
tlog_users_sssd
(default: []
)YAML list of groups to be recorded:
tlog_groups_sssd
(default: []
)YAML list of users to be excluded from recording (only applicable when
scope=all):
tlog_exclude_users_sssd
(default: []
)YAML list of groups to be excluded from recording (only applicable when
scope=all):
tlog_exclude_groups_sssd
(default: []
)This role has no dependencies currently.
- name: Deploy session recording
hosts: all
roles:
- redhat.rhel_system_roles.tlog
vars:
tlog_scope_sssd: some
tlog_users_sssd:
- recordeduser
Testing
——-
Testing is done with the tests/tests*.yml
playbooks.
GPL v3.0
Nathan Kinder @nkinder
Kirill Glebov @sabbaka