diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-06-05 19:13:02 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-06-05 19:13:02 -0300 |
commit | 8b9f80725d981ac12733aba493c98a8a9e17de3b (patch) | |
tree | 038d5047b2d21960a80c8571affdb7ca119d37a4 /manifests/subsystem | |
parent | 8d8b27b581fb58b8d559d3c7c1e1397e578230c3 (diff) | |
download | puppet-nodo-8b9f80725d981ac12733aba493c98a8a9e17de3b.tar.gz puppet-nodo-8b9f80725d981ac12733aba493c98a8a9e17de3b.tar.bz2 |
Adds manifests/subsystem/grsec/grou
Diffstat (limited to 'manifests/subsystem')
-rw-r--r-- | manifests/subsystem/grsec/group.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/subsystem/grsec/group.pp b/manifests/subsystem/grsec/group.pp new file mode 100644 index 0000000..998265a --- /dev/null +++ b/manifests/subsystem/grsec/group.pp @@ -0,0 +1,8 @@ +class nodo::subsystem::grsec::group( + $ensure = 'present', +) { + group { 'grsec-tpe': + gid => '64040', + ensure => $ensure, + } +} |