diff options
Diffstat (limited to 'manifests/centos.pp')
-rw-r--r-- | manifests/centos.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp index 6581b7a..4d9507b 100644 --- a/manifests/centos.pp +++ b/manifests/centos.pp @@ -8,4 +8,12 @@ class nagios::centos inherits nagios::base { Service[nagios]{ hasstatus => true, } + + if ($nagios_allow_external_cmd) { + file { '/var/spool/nagios/cmd': + ensure => 'directory', + require => Package['nagios'], + mode => 2660, owner => apache, group => nagios, + } + } } |