aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-12-29 11:04:38 -0200
committerSilvio Rhatto <rhatto@riseup.net>2016-12-29 11:04:38 -0200
commit53ad32e8f08124f9ac837df091f61adf685775a8 (patch)
tree40659e1aef2c6569b2a5fa23af3040cfd43f7394 /manifests/utils
parent5999eb45ed41ca37e601ab79a4827d5cffb08b74 (diff)
downloadpuppet-nodo-53ad32e8f08124f9ac837df091f61adf685775a8.tar.gz
puppet-nodo-53ad32e8f08124f9ac837df091f61adf685775a8.tar.bz2
Adds nodo::subsystem::grsec
Diffstat (limited to 'manifests/utils')
-rw-r--r--manifests/utils/security/grsec.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/utils/security/grsec.pp b/manifests/utils/security/grsec.pp
new file mode 100644
index 0000000..c978088
--- /dev/null
+++ b/manifests/utils/security/grsec.pp
@@ -0,0 +1,13 @@
+class nodo::utils::security::grsec {
+ package { [
+ # The package with the specific image version might not be used
+ # but right now apt is complaining of unmet dependencies when
+ # trying to install only the metapackage maybe because both are
+ # on jessie-backports. This might chance in the near future.
+ 'linux-image-4.7.0-1-grsec-amd64',
+ 'linux-image-grsec-amd64',
+ 'paxtest',
+ ]:
+ ensure => present,
+ }
+}