Puppet Class: almalinux_hardening::services::disable::rpcbind
- Defined in:
- manifests/services/disable/rpcbind.pp
Summary
Disable rpcbind ServiceOverview
Puppet Module to perform AlmaLinux 8 OS Hardening with CIS benchmark. Copyright © 2022 Jonas Hügli
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'manifests/services/disable/rpcbind.pp', line 22
class almalinux_hardening::services::disable::rpcbind {
if $almalinux_hardening::enable_disable_rpcbind {
service { 'disable_rpcbind_service':
ensure => 'stopped',
name => 'rpcbind.service',
enable => 'mask',
}
service { 'disable_rpcbind_socket':
ensure => 'stopped',
name => 'rpcbind.socket',
enable => 'mask',
}
package { 'nfs-utils':
ensure => absent,
install_options => ['--disablerepo',$almalinux_hardening::disable_repos,'--enablerepo',$almalinux_hardening::enable_repos],
}
}
}
|