Puppet Class: almalinux_hardening::services::uninstall::ldap_client

Defined in:
manifests/services/uninstall/ldap_client.pp

Summary

Ensure LDAP client is not installed

Overview

Puppet Module to perform AlmaLinux 8 OS Hardening with CIS benchmark. Copyright © 2022 Jonas Hügli

Examples:

include almalinux_hardening::services::uninstall::ldap_client


19
20
21
22
23
24
25
26
# File 'manifests/services/uninstall/ldap_client.pp', line 19

class almalinux_hardening::services::uninstall::ldap_client {
  if $almalinux_hardening::enable_uninstall_ldap_client {
    package { 'openldap-clients':
      ensure          => purged,
      install_options => ['--disablerepo',$almalinux_hardening::disable_repos,'--enablerepo',$almalinux_hardening::enable_repos],
    }
  }
}