Puppet Class: almalinux_hardening::services::ssh::service

Summary

A short summary of the purpose of this class

Overview

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

A description of what this class does

Examples:

include almalinux_hardening::services::ssh::service


10
11
12
13
14
15
# File 'manifests/services/ssh/service.pp', line 10

class almalinux_hardening::services::ssh::service {
  service { 'sshd':
    ensure => running,
    enable => true,
  }
}