diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-06-04 18:33:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-06-04 18:33:07 -0300 |
commit | 7ed1c52b68bbdafe9669cd3e3fcbdd3cc1202ff6 (patch) | |
tree | 3059776b6907c9aa85fa287658277bd322727e91 /manifests/subsystem/monitor | |
parent | 36670b955bfcbfbfc1079c1e1bd74a1026ea7c4f (diff) | |
download | puppet-nodo-7ed1c52b68bbdafe9669cd3e3fcbdd3cc1202ff6.tar.gz puppet-nodo-7ed1c52b68bbdafe9669cd3e3fcbdd3cc1202ff6.tar.bz2 |
Adding nodo::subsystem::monitor::master
Diffstat (limited to 'manifests/subsystem/monitor')
-rw-r--r-- | manifests/subsystem/monitor/master.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/subsystem/monitor/master.pp b/manifests/subsystem/monitor/master.pp new file mode 100644 index 0000000..6895617 --- /dev/null +++ b/manifests/subsystem/monitor/master.pp @@ -0,0 +1,9 @@ +class nodo::subsystem::monitor::master { + file { '/etc/nagios-plugins/check_rbl.ini': + ensure => present, + owner => root, + group => root, + source => 'puppet:///modules/nodo/etc/nagios-plugins/check_rbl.ini', + require => Package['nagios'], + } +} |