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