diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-02-23 09:28:09 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-02-23 09:28:09 -0300 |
commit | d3fe64e6afdebb3fff875632552605ae356f7d88 (patch) | |
tree | 2189e83550451027c342b474ce7d37ba974f7914 | |
parent | 6a10906110a915a0a662566b5b400b7afe69c668 (diff) | |
download | puppet-nodo-d3fe64e6afdebb3fff875632552605ae356f7d88.tar.gz puppet-nodo-d3fe64e6afdebb3fff875632552605ae356f7d88.tar.bz2 |
Manage exec resources
-rw-r--r-- | manifests/resources.pp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/resources.pp b/manifests/resources.pp index 8b60ebf..644c18c 100644 --- a/manifests/resources.pp +++ b/manifests/resources.pp @@ -47,4 +47,8 @@ class nodo::resources { # PaX flags $pax = hiera('nodo::subsystem::grsec::paxctl', {}) create_resources('nodo::subsystem::grsec::paxctl', $pax) + + # Exec + $execs = hiera('execs', {}) + create_resources('exec', $execs) } |