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

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

Issue 5766400081657856: #760 - Make our ssh configuration used automatically for all servers (Closed)
Patch Set: #760 - Make our ssh configuration used automatically for all servers Created July 15, 2014, 1:21 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 | « modules/base/manifests/init.pp ('k') | modules/ssh/files/sshd_config » ('j') | 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
@@ -3,17 +3,26 @@
environment => ['MAILTO=admins@adblockplus.org', 'PYTHONPATH=/opt/sitescripts'],
}
- class {'ssh':
- custom_configuration => '
- MaxSessions 50
- MaxStartups 50
+ concat::fragment {'sshd_max_limits':
+ target => 'sshd_config',
+ order => '50',
+ content => '
+ MaxSessions 50
+ MaxStartups 50
+ '
+ }
- Match User rsync
- AllowTcpForwarding no
- X11Forwarding no
- AllowAgentForwarding no
- GatewayPorts no
- ForceCommand rsync --server --sender -vltprz --delete-excluded . /home/rsync/generated/data/'
+ concat::fragment {'sshd_user_rsync':
+ target => 'sshd_config',
+ order => '99',
+ content => '
+ Match User rsync
+ AllowTcpForwarding no
+ X11Forwarding no
+ AllowAgentForwarding no
+ GatewayPorts no
+ ForceCommand rsync --server --sender -vltprz --delete-excluded . /home/rsync/generated/data/
+ '
}
user {'rsync':
« no previous file with comments | « modules/base/manifests/init.pp ('k') | modules/ssh/files/sshd_config » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld