Ensure rsyslog-gnutls is installed
An XCCDF Rule
Description
TLS protocol support for rsyslog is installed.
The rsyslog-module-gtls
package can be installed with the following command:
$ sudo zypper install rsyslog-module-gtls
Rationale
The rsyslog-gnutls package provides Transport Layer Security (TLS) support for the rsyslog daemon, which enables secure remote logging.
- ID
- xccdf_org.ssgproject.content_rule_package_rsyslog-gnutls_installed
- Severity
- Medium
- Updated
Remediation - Puppet
include install_rsyslog-module-gtls
class install_rsyslog-module-gtls {
package { 'rsyslog-module-gtls':
ensure => 'installed',
}
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- CCE-91199-0
- enable_strategy
Remediation - OS Build Blueprint
[[packages]]
name = "rsyslog-module-gtls"
version = "*"
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel-default; then
zypper install -y "rsyslog-module-gtls"
else