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