aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/security/grsec.pp
blob: 4468e4ef9d66730a1d55c93f44dd3c8d8f679a95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class nodo::utils::security::grsec (
  $ensure = 'installed',
) {
  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.9.0-2-grsec-amd64',
    'linux-image-grsec-amd64',
    'paxtest',
  ]:
    ensure => $ensure,
  }
}