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

Unified Diff: modules/adblockplus/manifests/user.pp

Issue 29469584: #1634 - Update file resource syntax in module adblockplus (Closed)
Patch Set: Created June 21, 2017, 10:15 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 | « modules/adblockplus/manifests/sudo.pp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/adblockplus/manifests/user.pp
===================================================================
--- a/modules/adblockplus/manifests/user.pp
+++ b/modules/adblockplus/manifests/user.pp
@@ -56,7 +56,7 @@
'present' => 'directory',
default => $ensure,
},
- mode => 0700,
+ mode => '0700',
owner => $name,
require => User[$name],
}
@@ -64,7 +64,7 @@
file {"$home/.ssh/authorized_keys":
content => join($authorized_keys, "\n"),
ensure => $ensure,
- mode => 0644,
+ mode => '0644',
owner => $name,
require => File["$home/.ssh"],
}
« no previous file with comments | « modules/adblockplus/manifests/sudo.pp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld