summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2012-11-11 22:46:25 +0100
committerintrigeri <intrigeri@boum.org>2012-11-11 22:46:25 +0100
commit6153fcd9fd2469ab3521843defd7d61d790bb6c5 (patch)
treed8506d7a52c504c15bbfac6b68eaa9b7702cea3f /manifests/munin.pp
parent1627732475fa126d8eb3cb437994df1f14f96766 (diff)
Specify file modes as single-quoted strings.
Puppet style guide "9.6. File Modes" reads: In addition, file modes should be specified as single-quoted strings instead of bare word numbers.
Diffstat (limited to 'manifests/munin.pp')
-rw-r--r--manifests/munin.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/munin.pp b/manifests/munin.pp
index ecb13d9..2974195 100644
--- a/manifests/munin.pp
+++ b/manifests/munin.pp
@@ -3,15 +3,15 @@ class tor::munin {
file {
'/usr/local/share/munin-plugins/tor_connections':
source => 'puppet:///modules/tor/munin/tor_connections',
- mode => 0755, owner => root, group => root;
+ mode => '0755', owner => root, group => root;
'/usr/local/share/munin-plugins/tor_routers':
source => 'puppet:///modules/tor/munin/tor_routers',
- mode => 0755, owner => root, group => root;
+ mode => '0755', owner => root, group => root;
'/usr/local/share/munin-plugins/tor_traffic':
source => 'puppet:///modules/tor/munin/tor_traffic',
- mode => 0755, owner => root, group => root;
+ mode => '0755', owner => root, group => root;
}
munin::plugin {