| 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/09/09 18:15:06
Isn't it already included by the base module?
mathias
2014/10/08 03:02:33
It is, but that does not ensure that the base/ssh
| |
| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 135 User['rsync'], | 137 User['rsync'], |
| 136 File['/home/rsync/update_repos.sh'] | 138 File['/home/rsync/update_repos.sh'] |
| 137 ], | 139 ], |
| 138 minute => '8-58/10' | 140 minute => '8-58/10' |
| 139 } | 141 } |
| 140 | 142 |
| 141 class {'sitescripts': | 143 class {'sitescripts': |
| 142 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' | 144 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' |
| 143 } | 145 } |
| 144 } | 146 } |
| OLD | NEW |