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

Side by Side Diff: modules/filtermaster/manifests/init.pp

Issue 4810150141493248: Issue 122 - Puppet ENC via Hiera (Closed)
Patch Set: 112 - Puppet ENC via Hiera Created Oct. 8, 2014, 3:02 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 class filtermaster { 1 class filtermaster {
2 Cron { 2 Cron {
3 environment => ['MAILTO=admins@adblockplus.org', 'PYTHONPATH=/opt/sitescript s'], 3 environment => ['MAILTO=admins@adblockplus.org', 'PYTHONPATH=/opt/sitescript s'],
4 } 4 }
5 5
6 include ssh
Wladimir Palant 2014/11/17 16:43:36 That change shouldn't be necessary, is that a reba
mathias 2014/11/27 00:30:18 No it is not, that one is actually intentional: t
7
6 concat::fragment {'sshd_max_limits': 8 concat::fragment {'sshd_max_limits':
7 target => 'sshd_config', 9 target => 'sshd_config',
8 order => '50', 10 order => '50',
9 content => ' 11 content => '
10 MaxSessions 50 12 MaxSessions 50
11 MaxStartups 50 13 MaxStartups 50
12 ' 14 '
13 } 15 }
14 16
15 concat::fragment {'sshd_user_rsync': 17 concat::fragment {'sshd_user_rsync':
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 User['rsync'], 138 User['rsync'],
137 File['/home/rsync/update_repos.sh'] 139 File['/home/rsync/update_repos.sh']
138 ], 140 ],
139 minute => '8-58/10' 141 minute => '8-58/10'
140 } 142 }
141 143
142 class {'sitescripts': 144 class {'sitescripts':
143 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' 145 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts'
144 } 146 }
145 } 147 }
OLDNEW

Powered by Google App Engine
This is Rietveld