summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2010-12-12 18:15:06 -0500
committerMicah Anderson <micah@riseup.net>2010-12-12 18:15:06 -0500
commit6a5439f2ad807f15f588266432afa8fc2cd76410 (patch)
treef82dddcbec8a23ecedeff25a03db3d3520614786 /manifests
parentd4ba356a919c557cdd25f6038b8d0284366a2fe8 (diff)
fix syntax error introduced with previous commit
Diffstat (limited to 'manifests')
-rw-r--r--manifests/plugin/deploy.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/plugin/deploy.pp b/manifests/plugin/deploy.pp
index d4dbf6d..0ab4e9f 100644
--- a/manifests/plugin/deploy.pp
+++ b/manifests/plugin/deploy.pp
@@ -32,7 +32,7 @@ define munin::plugin::deploy( $source = '', $ensure = 'present', $config = '' )
}
# register the plugin
- if $require { munin::plugin{$name: ensure => $ensure, config => $config, require => $require } } }
+ if $require { munin::plugin{$name: ensure => $ensure, config => $config, require => $require } }
else {
munin::plugin{$name: ensure => $ensure, config => $config }
}