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

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

Issue 29469603: #1634 - Update file resource syntax in module filterserver (Closed)
Patch Set: Change of semicolon for colon in order to preserve consistency Created June 21, 2017, 9:55 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/filterserver/manifests/init.pp
===================================================================
--- a/modules/filterserver/manifests/init.pp
+++ b/modules/filterserver/manifests/init.pp
@@ -10,7 +10,7 @@
file {'/var/www':
ensure => directory,
owner => nginx,
- mode => 0755,
+ mode => '0755',
require => User['nginx']
}
}
@@ -29,7 +29,7 @@
File {
owner => root,
group => root,
- mode => 0644,
+ mode => '0644',
}
file {'/var/www/easylist':
@@ -53,12 +53,12 @@
ensure => directory,
require => User['rsync'],
owner => rsync,
- mode => 0600;
+ mode => '0600',
}
concat {'/home/rsync/.ssh/known_hosts':
owner => rsync,
- mode => 0444,
+ mode => '0444',
}
concat::fragment {'filtermaster_hostname':
@@ -80,7 +80,7 @@
User['rsync']
],
owner => rsync,
- mode => 0400,
+ mode => '0400',
source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.org'
}
@@ -91,7 +91,7 @@
User['rsync']
],
owner => rsync,
- mode => 0400,
+ mode => '0400',
source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.org.pub'
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld