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

Unified Diff: modules/web/manifests/server.pp

Issue 29469645: #1634 - Update file resource syntax in module web (Closed)
Patch Set: For comment number 2 Created June 21, 2017, 10:22 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/web/manifests/server.pp
===================================================================
--- a/modules/web/manifests/server.pp
+++ b/modules/web/manifests/server.pp
@@ -22,7 +22,7 @@
File {
owner => 'root',
group => 'root',
- mode => 0644,
+ mode => '0644',
}
Cron {
@@ -146,7 +146,7 @@
file {'/var/www':
ensure => directory,
- mode => 755,
+ mode => '0755',
}
file {[
@@ -156,7 +156,7 @@
]:
ensure => directory,
owner => www,
- mode => 755,
+ mode => '0755',
}
$update_cms_cmd = [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld