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

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

Issue 11037080: Use ssh.adblockplus.org for SSH (Closed)
Patch Set: Updated known_hosts Created July 9, 2013, 2:56 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
« no previous file with comments | « modules/downloadserver/files/known_hosts ('k') | modules/filterserver/files/known_hosts » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 class downloadserver { 1 class downloadserver {
2 user {'stats': 2 user {'stats':
3 ensure => present, 3 ensure => present,
4 home => '/home/stats', 4 home => '/home/stats',
5 managehome => true 5 managehome => true
6 } 6 }
7 7
8 file {'/home/stats/.ssh': 8 file {'/home/stats/.ssh':
9 ensure => directory, 9 ensure => directory,
10 owner => stats, 10 owner => stats,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 owner => rsync, 134 owner => rsync,
135 mode => 0400, 135 mode => 0400,
136 source => 'puppet:///modules/private/rsync@downloads.adblockplus.org.pub' 136 source => 'puppet:///modules/private/rsync@downloads.adblockplus.org.pub'
137 } 137 }
138 138
139 cron {'mirror-devbuilds': 139 cron {'mirror-devbuilds':
140 ensure => present, 140 ensure => present,
141 require => [File['/home/rsync/.ssh/known_hosts'], 141 require => [File['/home/rsync/.ssh/known_hosts'],
142 File['/home/rsync/.ssh/id_rsa'], 142 File['/home/rsync/.ssh/id_rsa'],
143 File['/var/www/devbuilds']], 143 File['/var/www/devbuilds']],
144 command => 'rsync -e ssh -ltprz devbuilds@adblockplus.org:. /var/www/devbuil ds', 144 command => 'rsync -e ssh -ltprz devbuilds@ssh.adblockplus.org:. /var/www/dev builds',
145 user => rsync, 145 user => rsync,
146 hour => '*', 146 hour => '*',
147 minute => '4-54/10' 147 minute => '4-54/10'
148 } 148 }
149 } 149 }
OLDNEW
« no previous file with comments | « modules/downloadserver/files/known_hosts ('k') | modules/filterserver/files/known_hosts » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld