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

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

Issue 4865011998523392: Change ssh keys to ecdsa (Closed)
Patch Set: Revert the changes to filterserver Created Nov. 18, 2013, 6:05 p.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 filterserver { 1 class filterserver {
2 class {'nginx': 2 class {'nginx':
3 worker_processes => 2, 3 worker_processes => 2,
4 worker_connections => 4000, 4 worker_connections => 4000,
5 ssl_session_cache => off, 5 ssl_session_cache => off,
6 } 6 }
7 7
8 class {'statsclient': 8 class {'statsclient':
9 log_path => '/var/log/nginx/access_log_easylist_downloads.1.gz', 9 log_path => '/var/log/nginx/access_log_easylist_downloads.1.gz',
10 } 10 }
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ], 121 ],
122 owner => rsync, 122 owner => rsync,
123 mode => 0400, 123 mode => 0400,
124 source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.or g.pub' 124 source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.or g.pub'
125 } 125 }
126 126
127 cron {'mirror': 127 cron {'mirror':
128 ensure => present, 128 ensure => present,
129 require => [ 129 require => [
130 File['/home/rsync/.ssh/known_hosts'], 130 File['/home/rsync/.ssh/known_hosts'],
131 File['/home/rsync/.ssh/id_rsa'], 131 File['/home/rsync/.ssh/id_ecdsa'],
132 User['rsync'] 132 User['rsync']
133 ], 133 ],
134 command => 'rsync -e ssh -ltprz --delete rsync@filtermaster.adblockplus.org: . /var/www/easylist/', 134 command => 'rsync -e "ssh -o CheckHostIP=no" -ltprz --delete rsync@filtermas ter.adblockplus.org:. /var/www/easylist/',
135 environment => ['MAILTO=admins@adblockplus.org,root'], 135 environment => ['MAILTO=admins@adblockplus.org,root'],
136 user => rsync, 136 user => rsync,
137 hour => '*', 137 hour => '*',
138 minute => '2-52/10' 138 minute => '2-52/10'
139 } 139 }
140 } 140 }
OLDNEW
« no previous file with comments | « modules/filtermaster/manifests/init.pp ('k') | modules/private-stub/files/filtermaster.adblockplus.org_ssh.key » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld