summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/munin.pp')
-rw-r--r--manifests/munin.pp16
1 files changed, 8 insertions, 8 deletions
diff --git a/manifests/munin.pp b/manifests/munin.pp
index 8504f89..24ea53e 100644
--- a/manifests/munin.pp
+++ b/manifests/munin.pp
@@ -1,23 +1,23 @@
class tor::munin {
file {
- "/usr/local/share/munin-plugins/tor_connections":
- source => "puppet:///modules/tor/munin/tor_connections",
+ '/usr/local/share/munin-plugins/tor_connections':
+ source => 'puppet:///modules/tor/munin/tor_connections',
mode => 0755, owner => root, group => root;
- "/usr/local/share/munin-plugins/tor_routers":
- source => "puppet:///modules/tor/munin/tor_routers",
+ '/usr/local/share/munin-plugins/tor_routers':
+ source => 'puppet:///modules/tor/munin/tor_routers',
mode => 0755, owner => root, group => root;
- "/usr/local/share/munin-plugins/tor_traffic":
- source => "puppet:///modules/tor/munin/tor_traffic",
+ '/usr/local/share/munin-plugins/tor_traffic':
+ source => 'puppet:///modules/tor/munin/tor_traffic',
mode => 0755, owner => root, group => root;
}
munin::plugin {
- [ "tor_connections", "tor_routers", "tor_traffic" ]:
+ [ 'tor_connections', 'tor_routers', 'tor_traffic' ]:
ensure => present,
config => "user debian-tor\n env.cookiefile /var/run/tor/control.authcookie",
- script_path_in => "/usr/local/share/munin-plugins";
+ script_path_in => '/usr/local/share/munin-plugins';
}
}