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

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

Issue 29469636: #1634 - Update file resource syntax in module ssh (Closed)
Patch Set: Created June 20, 2017, 5:12 p.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/ssh/manifests/init.pp
===================================================================
--- a/modules/ssh/manifests/init.pp
+++ b/modules/ssh/manifests/init.pp
@@ -16,7 +16,7 @@
path => '/etc/ssh/sshd_config',
owner => root,
group => root,
- mode => 0644,
+ mode => '0644',
require => Package['openssh-server']
}
@@ -29,7 +29,7 @@
file {'ssh_config':
content => template('ssh/ssh_config.erb'),
group => 'root',
- mode => 0644,
+ mode => '0644',
owner => 'root',
path => '/etc/ssh/ssh_config',
require => Package['openssh-client'],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld