Skip to content

Install AIDE

An XCCDF Rule

Description

The aide package can be installed with the following command:

$ sudo yum install aide

Rationale

The AIDE package must be installed if it is to be available for integrity checking.

ID
xccdf_org.ssgproject.content_rule_package_aide_installed
Severity
Medium
References
Updated



Remediation - Puppet

include install_aide

class install_aide {
  package { 'aide':
    ensure => 'installed',
  }

Remediation - script:kickstart


package install aide

Remediation - OS Build Blueprint


[[packages]]
name = "aide"
version = "*"

Remediation - script:bootc


dnf install aide

Remediation - Anaconda Pre-Install Instructions


package --add=aide

Remediation - Shell Script

# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel; then

if ! rpm -q --quiet "aide" ; then
    yum install -y "aide"
fi

Remediation - Ansible

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - CCE-80844-4
  - CJIS-5.10.1.3