Puppet Class: almalinux_hardening::services::disable::dovecot
- Defined in:
- manifests/services/disable/dovecot.pp
Summary
Disable Dovecot ServiceOverview
Puppet Module to perform AlmaLinux 8 OS Hardening with CIS benchmark. Copyright © 2022 Jonas Hügli
17 18 19 20 21 22 23 24 25 |
# File 'manifests/services/disable/dovecot.pp', line 17
class almalinux_hardening::services::disable::dovecot {
if $almalinux_hardening::enable_disable_dovecot {
service { 'disable_dovecot':
ensure => 'stopped',
name => 'dovecot.service',
enable => 'mask',
}
}
}
|