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

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

Issue 5766400081657856: #760 - Make our ssh configuration used automatically for all servers (Closed)
Left Patch Set: #760 - Make our ssh configuration used automatically for all servers Created July 15, 2014, 12:59 p.m.
Right Patch Set: #760 - Make our ssh configuration used automatically for all servers Created July 15, 2014, 1:21 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/base/manifests/init.pp ('k') | modules/ssh/files/sshd_config » ('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 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 concat::fragment {'sshd_max_limits':
7 target => 'sshd_config',
8 order => '50',
9 content => '
10 MaxSessions 50
11 MaxStartups 50
12 '
13 }
14
6 concat::fragment {'sshd_user_rsync': 15 concat::fragment {'sshd_user_rsync':
7 target => 'sshd_config', 16 target => 'sshd_config',
17 order => '99',
8 content => ' 18 content => '
9 Match User rsync 19 Match User rsync
10 AllowTcpForwarding no 20 AllowTcpForwarding no
11 X11Forwarding no 21 X11Forwarding no
12 AllowAgentForwarding no 22 AllowAgentForwarding no
13 GatewayPorts no 23 GatewayPorts no
14 ForceCommand rsync --server --sender -vltprz --delete-excluded . /home/r sync/generated/data/ 24 ForceCommand rsync --server --sender -vltprz --delete-excluded . /home/r sync/generated/data/
15 ' 25 '
16 } 26 }
17 27
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 User['rsync'], 135 User['rsync'],
126 File['/home/rsync/update_repos.sh'] 136 File['/home/rsync/update_repos.sh']
127 ], 137 ],
128 minute => '8-58/10' 138 minute => '8-58/10'
129 } 139 }
130 140
131 class {'sitescripts': 141 class {'sitescripts':
132 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' 142 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts'
133 } 143 }
134 } 144 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld