diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-19 21:13:08 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-19 21:13:08 +0000 |
commit | afee9dc7522923167f71641e186e45dd25d8e71b (patch) | |
tree | 22863e1671ca3e25d57722315051885d26dece05 /modules/xymon | |
parent | 61b0413a7b81511a451e0c814d98042117334977 (diff) | |
download | puppet-afee9dc7522923167f71641e186e45dd25d8e71b.tar puppet-afee9dc7522923167f71641e186e45dd25d8e71b.tar.gz puppet-afee9dc7522923167f71641e186e45dd25d8e71b.tar.bz2 puppet-afee9dc7522923167f71641e186e45dd25d8e71b.tar.xz puppet-afee9dc7522923167f71641e186e45dd25d8e71b.zip |
make puppet-lint silent
Diffstat (limited to 'modules/xymon')
-rw-r--r-- | modules/xymon/manifests/server.pp | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/modules/xymon/manifests/server.pp b/modules/xymon/manifests/server.pp index 00a2bf23..223dab6b 100644 --- a/modules/xymon/manifests/server.pp +++ b/modules/xymon/manifests/server.pp @@ -19,22 +19,27 @@ class xymon::server { # hobbitlaunch (started by init script) may need to be restarted for # changes here, for hobbitd_rrd (e.g. TEST2RRD), it is sufficient to # kill hobbitd_rrd, hobbitlaunch will respawn it - '/etc/xymon/hobbitserver.cfg': content => template('xymon/hobbitserver.cfg'); + '/etc/xymon/hobbitserver.cfg': + content => template('xymon/hobbitserver.cfg'); # Define hosts and web view layout, and lists tests to be run against # host by e.g. network tests from xymon server - '/etc/xymon/bb-hosts': content => template('xymon/bb-hosts'); + '/etc/xymon/bb-hosts': + content => template('xymon/bb-hosts'); # Defines thresholds for test data reported by clients, e.g. load # disk, procs, ports, memory, as well as those which require some - # configuration server side to the client: files, msgs, - '/etc/xymon/hobbit-clients.cfg': content => template('xymon/hobbit-clients.cfg'); + # configuration server side to the client: files, msgs, + '/etc/xymon/hobbit-clients.cfg': + content => template('xymon/hobbit-clients.cfg'); # Configuration for the xymon clients, which log files to process etc. - '/etc/xymon/client-local.cfg': content => template('xymon/client-local.cfg'); + '/etc/xymon/client-local.cfg': + content => template('xymon/client-local.cfg'); # Used for alerting, changes should be taken into effect immediately - '/etc/xymon/hobbit-alerts.cfg': content => template('xymon/hobbit-alerts.cfg'); + '/etc/xymon/hobbit-alerts.cfg': + content => template('xymon/hobbit-alerts.cfg'); } # Most changes should take effect immediately, but sometimes threshold |