summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorDaniele Sluijters <daenney@users.noreply.github.com>2015-04-22 15:06:52 +0200
committerDaniele Sluijters <daenney@users.noreply.github.com>2015-04-22 15:06:52 +0200
commit0bf9d7d72b54cb6b4cf918b53c0f8e210d1cc2d3 (patch)
tree6e24e88c62dd38c89640c992e001d3cc27556afa /manifests
parent30bb4f4b7156ee4dbabf11e7063113e92e344d91 (diff)
params: Don't set mail['to'].
Setting it to 'undef' makes it the string undef, not having it set makes it undef/nil for Puppet.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/params.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index a4601df..a652512 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -5,7 +5,7 @@ class unattended_upgrades::params {
}
$default_auto = { 'fix_interrupted_dpkg' => true, 'remove' => true, 'reboot' => false, 'clean' => 0, }
- $default_mail = { 'only_on_error' => true, 'to' => undef, }
+ $default_mail = { 'only_on_error' => true, }
$default_backup = { 'archive_interval' => 0, 'level' => 3, }
$default_age = { 'min' => 2, 'max' => 0, }
$default_size = { 'max' => 0, }