Left: | ||
Right: |
OLD | NEW |
---|---|
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 include ssh | |
Wladimir Palant
2014/11/17 16:43:36
That change shouldn't be necessary, is that a reba
mathias
2014/11/27 00:30:18
No it is not, that one is actually intentional:
t
| |
7 | |
6 concat::fragment {'sshd_max_limits': | 8 concat::fragment {'sshd_max_limits': |
7 target => 'sshd_config', | 9 target => 'sshd_config', |
8 order => '50', | 10 order => '50', |
9 content => ' | 11 content => ' |
10 MaxSessions 50 | 12 MaxSessions 50 |
11 MaxStartups 50 | 13 MaxStartups 50 |
12 ' | 14 ' |
13 } | 15 } |
14 | 16 |
15 concat::fragment {'sshd_user_rsync': | 17 concat::fragment {'sshd_user_rsync': |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
136 User['rsync'], | 138 User['rsync'], |
137 File['/home/rsync/update_repos.sh'] | 139 File['/home/rsync/update_repos.sh'] |
138 ], | 140 ], |
139 minute => '8-58/10' | 141 minute => '8-58/10' |
140 } | 142 } |
141 | 143 |
142 class {'sitescripts': | 144 class {'sitescripts': |
143 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' | 145 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' |
144 } | 146 } |
145 } | 147 } |
OLD | NEW |