aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/grsec/group.pp
blob: 998265ae8423042d8dc06ae39c4494175f56d46d (plain)
1
2
3
4
5
6
7
8
class nodo::subsystem::grsec::group(
  $ensure = 'present',
) {
  group { 'grsec-tpe':
    gid    => '64040',
    ensure => $ensure,
  }
}