Ensure rsyslog is Installed

Classification:

compliance

Framework:

Control:

Description

Rsyslog is installed by default. The rsyslog package can be installed with the following command:

 $ apt-get install rsyslog

Rationale

The rsyslog package provides the rsyslog daemon, which provides system logging services.

Remediation

Shell script

The following script can be run on the host to remediate the issue.

# Remediation is applicable only in certain platforms
if [ ! -f /.dockerenv ] && [ ! -f /run/.containerenv ]; then

DEBIAN\_FRONTEND=noninteractive apt-get install -y "rsyslog"

else
 >&2 echo 'Remediation is not applicable, nothing was done'
fi

Ansible playbook

The following playbook can be run with Ansible to remediate the issue.

- name: Ensure rsyslog is installed
 package:
 name: rsyslog
 state: present
 when: ansible\_virtualization\_type not in ["docker", "lxc", "openvz", "podman", "container"]
 tags:
 - NIST-800-53-CM-6(a)
 - enable\_strategy
 - low\_complexity
 - low\_disruption
 - medium\_severity
 - no\_reboot\_needed
 - package\_rsyslog\_installed