Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 source => 'puppet:///modules/filterserver/logrotate' | 77 source => 'puppet:///modules/filterserver/logrotate' |
78 } | 78 } |
79 | 79 |
80 file {'/home/rsync/.ssh': | 80 file {'/home/rsync/.ssh': |
81 ensure => directory, | 81 ensure => directory, |
82 require => User['rsync'], | 82 require => User['rsync'], |
83 owner => rsync, | 83 owner => rsync, |
84 mode => 0600; | 84 mode => 0600; |
85 } | 85 } |
86 | 86 |
87 concat{'/home/rsync/.ssh/known_hosts': | 87 concat {'/home/rsync/.ssh/known_hosts': |
Felix Dahlke
2013/11/14 15:07:31
Space before {, likewise below.
Using a template
christian
2013/11/14 15:26:43
Done.
| |
88 owner => rsync, | 88 owner => rsync, |
89 mode => 0444, | 89 mode => 0444, |
90 } | 90 } |
91 | 91 |
92 concat::fragment{'filtermaster_hostname': | 92 concat::fragment {'filtermaster_hostname': |
93 target => '/home/rsync/.ssh/known_hosts', | 93 target => '/home/rsync/.ssh/known_hosts', |
94 content => 'filtermaster.adblockplus.org ', | 94 content => 'filtermaster.adblockplus.org ', |
95 order => 1, | 95 order => 1, |
96 } | 96 } |
97 | 97 |
98 concat::fragment{'filtermaster_hostkey': | 98 concat::fragment {'filtermaster_hostkey': |
99 target => '/home/rsync/.ssh/known_hosts', | 99 target => '/home/rsync/.ssh/known_hosts', |
100 source => 'puppet:///modules/private/filtermaster.adblockplus.org_ssh.pub', | 100 source => 'puppet:///modules/private/filtermaster.adblockplus.org_ssh.pub', |
101 order => 2, | 101 order => 2, |
102 } | 102 } |
103 | 103 |
104 file {'/home/rsync/.ssh/id_rsa': | 104 file {'/home/rsync/.ssh/id_rsa': |
105 ensure => file, | 105 ensure => file, |
106 require => [ | 106 require => [ |
107 File['/home/rsync/.ssh'], | 107 File['/home/rsync/.ssh'], |
108 User['rsync'] | 108 User['rsync'] |
(...skipping 21 matching lines...) Expand all Loading... | |
130 File['/home/rsync/.ssh/id_rsa'], | 130 File['/home/rsync/.ssh/id_rsa'], |
131 User['rsync'] | 131 User['rsync'] |
132 ], | 132 ], |
133 command => 'rsync -e ssh -ltprz --delete rsync@filtermaster1.adblockplus.org :. /var/www/easylist/', | 133 command => 'rsync -e ssh -ltprz --delete rsync@filtermaster1.adblockplus.org :. /var/www/easylist/', |
134 environment => ['MAILTO=admins@adblockplus.org,root'], | 134 environment => ['MAILTO=admins@adblockplus.org,root'], |
135 user => rsync, | 135 user => rsync, |
136 hour => '*', | 136 hour => '*', |
137 minute => '2-52/10' | 137 minute => '2-52/10' |
138 } | 138 } |
139 } | 139 } |
LEFT | RIGHT |