LEFT | RIGHT |
1 include adblockplus::legacy | 1 include adblockplus::legacy |
2 | 2 |
3 Cron { | 3 Cron { |
4 environment => hiera('cron::environment', []), | 4 environment => hiera('cron::environment', []), |
5 } | 5 } |
6 | 6 |
7 Exec { | 7 Exec { |
8 logoutput => 'on_failure', | 8 logoutput => 'on_failure', |
9 } | 9 } |
10 | 10 |
11 File { | 11 File { |
12 group => 'root', | 12 group => 'root', |
13 } | 13 } |
14 | 14 |
15 # Class['apt'] cannot yet be configured to update on-demand | 15 # Class['apt'] cannot yet be configured to update on-demand |
16 class {'apt': | 16 class {'apt': |
17 always_apt_update => ($environment != 'development'), | 17 always_apt_update => ($environment != 'development'), |
18 } | 18 } |
| 19 |
LEFT | RIGHT |