aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/unattended_upgrades.pp1
-rw-r--r--templates/50unattended-upgrades.erb2
2 files changed, 2 insertions, 1 deletions
diff --git a/manifests/unattended_upgrades.pp b/manifests/unattended_upgrades.pp
index b63b483..7e17333 100644
--- a/manifests/unattended_upgrades.pp
+++ b/manifests/unattended_upgrades.pp
@@ -1,6 +1,7 @@
class apt::unattended_upgrades (
$config_content = undef,
$mailonlyonerror = true,
+ $mail_recipient = 'root',
) {
package { 'unattended-upgrades':
diff --git a/templates/50unattended-upgrades.erb b/templates/50unattended-upgrades.erb
index 0ba0d7e..41bac87 100644
--- a/templates/50unattended-upgrades.erb
+++ b/templates/50unattended-upgrades.erb
@@ -20,7 +20,7 @@ APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Download-Upgradeable-Packages "1";
APT::Periodic::Unattended-Upgrade "1";
-Unattended-Upgrade::Mail "root";
+Unattended-Upgrade::Mail "<%= mail_recipient -%>";
<% if mailonlyonerror -%>
Unattended-Upgrade::MailOnlyOnError "true";
<% end -%>