Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/updateserver/manifests/init.pp

Issue 29469642: #1634 - Update file resource syntax in module updateserver (Closed)
Patch Set: Add colon at the end of the line in order to keep consistency Created June 21, 2017, 10:20 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/updateserver/manifests/init.pp
===================================================================
--- a/modules/updateserver/manifests/init.pp
+++ b/modules/updateserver/manifests/init.pp
@@ -16,7 +16,7 @@
file {'/var/www':
ensure => directory,
- mode => 0755,
+ mode => '0755',
require => Package['nginx']
}
@@ -24,7 +24,7 @@
file {$update_dir:
ensure => directory,
- mode => 0755
+ mode => '0755',
}
$sitescripts_var_dir = '/var/lib/sitescripts'
@@ -36,7 +36,7 @@
file {$sitescripts_var_dir:
ensure => directory,
- mode => 0755,
+ mode => '0755',
owner => 'sitescripts',
group => 'sitescripts'
}
@@ -48,7 +48,7 @@
file {$update_manifest_dirs:
ensure => directory,
- mode => 0755,
+ mode => '0755',
owner => 'sitescripts',
group => 'sitescripts'
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld