From 6153fcd9fd2469ab3521843defd7d61d790bb6c5 Mon Sep 17 00:00:00 2001 From: intrigeri Date: Sun, 11 Nov 2012 22:46:25 +0100 Subject: 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. --- manifests/munin.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'manifests/munin.pp') 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 { -- cgit v1.2.3