aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/grsec/paxctl.pp
blob: 2b3a843c61b5dadd9a3f477e2be8de916fe48bfc (plain)
1
2
3
4
5
6
7
8
9
10
11
define nodo::subsystem::grsec::paxctl(
  $file,
  $flags,
)
{
  exec { "paxctl-${name}":
    command => "/sbin/paxctl -${flags} ${file}",
    user    => "root",
    require => Package['paxtest'],
  }
}