2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'manifests/params.pp', line 2
class cronapt::params {
$packages = ['cron-apt']
# The email address to send mail to.
$cron_mail = 'root'
# When to send email about the cron-apt results.
# Value: error (send mail on error runs)
# upgrade (when packages are upgraded)
# changes (mail when change in output from an action)
# output (send mail when output is generated)
# always (always send mail)
# (else never send mail)
$cron_mail_on = 'error'
# Which actions (files in this module) to enable
$cron_actions = ['update', 'upgrade', 'notify']
}
|