Puppet Class: almalinux_hardening::system::grub2::password

Defined in:
manifests/system/grub2/password.pp

Summary

Set the UEFI Boot Loader Password

Overview

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

Examples:

include almalinux_hardening::system::grub2::password


24
25
26
27
28
29
30
31
# File 'manifests/system/grub2/password.pp', line 24

class almalinux_hardening::system::grub2::password {
  if $almalinux_hardening::enable_grub2_password {
    grub_user { 'root':
      password  => $almalinux_hardening::grub2_password,
      superuser => true,
    }
  }
}