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

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

Issue 29469600: #1634 - Update file resource syntax in module filtermaster (Closed)
Patch Set: For comment number 2 Created June 21, 2017, 10:04 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/filtermaster/manifests/init.pp
===================================================================
--- a/modules/filtermaster/manifests/init.pp
+++ b/modules/filtermaster/manifests/init.pp
@@ -37,7 +37,7 @@
file {'/home/rsync/update_repos.sh':
ensure => file,
owner => rsync,
- mode => 0700,
+ mode => '0700',
source => 'puppet:///modules/filtermaster/update_repos.sh'
}
@@ -60,13 +60,13 @@
file {'/home/rsync/.ssh':
ensure => directory,
owner => rsync,
- mode => 0600
+ mode => '0600',
}
file {'/home/rsync/.ssh/authorized_keys':
ensure => file,
owner => rsync,
- mode => 0600,
+ mode => '0600',
source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.org.pub'
}
@@ -76,7 +76,7 @@
ensure => file,
owner => root,
group => root,
- mode => 600,
+ mode => '0600',
source => 'puppet:///modules/private/filtermaster.adblockplus.org_ssh.key'
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld