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

Delta Between Two Patch Sets: modules/statsclient/manifests/init.pp

Issue 4810150141493248: Issue 122 - Puppet ENC via Hiera (Closed)
Left Patch Set: Created Sept. 8, 2014, 11:56 a.m.
Right Patch Set: Puppet ENC via Hiera - Without Arrow Alignment Created March 16, 2015, 2:04 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « modules/private-stub/hiera/roles/monitoringserver.yaml ('k') | modules/statsmaster/files/known_hosts » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 class statsclient { 1 class statsclient {
2 2
3 include ssh 3 include ssh
Wladimir Palant 2014/09/09 18:15:06 Isn't it already included by the base module?
mathias 2014/10/08 03:02:33 It is, but that does not ensure that the base/ssh
4 4
5 user {'stats': 5 user {'stats':
6 ensure => present, 6 ensure => present,
7 home => '/home/stats', 7 home => '/home/stats',
8 managehome => true, 8 managehome => true,
9 } 9 }
10 10
11 file {'/home/stats/.ssh': 11 file {'/home/stats/.ssh':
12 ensure => directory, 12 ensure => directory,
13 owner => stats, 13 owner => stats,
(...skipping 19 matching lines...) Expand all
33 GatewayPorts no 33 GatewayPorts no
34 ForceCommand (echo $SSH_ORIGINAL_COMMAND | grep -qv /) && cat "/var/log/ nginx/$SSH_ORIGINAL_COMMAND" 34 ForceCommand (echo $SSH_ORIGINAL_COMMAND | grep -qv /) && cat "/var/log/ nginx/$SSH_ORIGINAL_COMMAND"
35 ' 35 '
36 } 36 }
37 37
38 cron {'mirrorstats': 38 cron {'mirrorstats':
39 ensure => absent, 39 ensure => absent,
40 user => stats, 40 user => stats,
41 } 41 }
42 } 42 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld