aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-02-24 23:47:36 +0000
committerMichael Scherer <misc@mageia.org>2011-02-24 23:47:36 +0000
commit0597c6dc284051a5f8f101e1252836dd2c46bfcb (patch)
treed34f34663c9b2ba013adf9fd1947db90b3971c30 /modules
parent61e89d2a38a735775d1eb5637c87ae6fc6039ed8 (diff)
downloadpuppet-0597c6dc284051a5f8f101e1252836dd2c46bfcb.tar
puppet-0597c6dc284051a5f8f101e1252836dd2c46bfcb.tar.gz
puppet-0597c6dc284051a5f8f101e1252836dd2c46bfcb.tar.bz2
puppet-0597c6dc284051a5f8f101e1252836dd2c46bfcb.tar.xz
puppet-0597c6dc284051a5f8f101e1252836dd2c46bfcb.zip
add missing commas
Diffstat (limited to 'modules')
-rw-r--r--modules/xymon/manifests/init.pp14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/xymon/manifests/init.pp b/modules/xymon/manifests/init.pp
index 93f03050..2a6d8821 100644
--- a/modules/xymon/manifests/init.pp
+++ b/modules/xymon/manifests/init.pp
@@ -2,11 +2,11 @@ class xymon {
class client {
package { xymon-client:
- ensure => installed
+ ensure => installed,
}
service { xymon-client:
- ensure => running
- path => '/etc/init.d/xymon-client'
+ ensure => running,
+ path => '/etc/init.d/xymon-client',
}
file { '/etc/sysconfig/xymon-client':
content => template("xymon/xymon-client"),
@@ -15,7 +15,7 @@ class xymon {
class server {
package { xymon:
- ensure => installed
+ ensure => installed,
}
service { xymon:
ensure => running,
@@ -32,7 +32,7 @@ class xymon {
group => xymon,
mode => 644,
require => Package["xymon"],
- notify => [Service["xymon"],
+ notify => Service["xymon"],
content => template("xymon/hobbitserver.cfg"),
}
# Define hosts and web view layout, and lists tests to be run against
@@ -49,7 +49,7 @@ class xymon {
# disk, procs, ports, memory, as well as those which require some
# configuration server side to the client: files, msgs,
file { 'hobbit-clients.cfg':
- path => '/etc/xymon/hobbit-clients.cfg'
+ path => '/etc/xymon/hobbit-clients.cfg',
ensure => present,
user => root,
group => xymon,
@@ -68,7 +68,7 @@ class xymon {
# Used for alerting, changes should be taken into effect immediately
file {'hobbit-alerts.cfg':
- path => '/etc/xymon/hobbit-alerts.cfg':
+ path => '/etc/xymon/hobbit-alerts.cfg',
ensure => present,
user => root,
group => xymon,