33 lines
1 KiB
Text
33 lines
1 KiB
Text
// this file is managed by puppet !
|
|
|
|
Unattended-Upgrade::Allowed-Origins {
|
|
<% if scope.lookupvar('::operatingsystem') == 'Ubuntu' -%>
|
|
"${distro_id}:${distro_codename}-security";
|
|
"${distro_id}:${distro_codename}-updates";
|
|
"${distro_id}:${distro_codename}-backports";
|
|
<% elsif scope.lookupvar('::operatingsystem') == 'Debian' and scope.lookupvar('::operatingsystemmajrelease') == 6 -%>
|
|
"${distro-id} ${distro-codename}-security";
|
|
"${distro-id} ${distro-codename}-lts";
|
|
<% else -%>
|
|
# See Debian bug #704087
|
|
"o=Debian,a=oldstable,l=Debian-Security";
|
|
"o=Debian,a=stable,l=Debian-Security";
|
|
<% end -%>
|
|
};
|
|
|
|
<% if not @blacklisted_packages.empty? -%>
|
|
Unattended-Upgrade::Package-Blacklist {
|
|
<% @blacklisted_packages.each do |pkg| -%>
|
|
"<%= pkg %>";
|
|
<% end -%>
|
|
}
|
|
<% end -%>
|
|
|
|
APT::Periodic::Update-Package-Lists "1";
|
|
APT::Periodic::Download-Upgradeable-Packages "1";
|
|
APT::Periodic::Unattended-Upgrade "1";
|
|
|
|
Unattended-Upgrade::Mail "<%= @mail_recipient -%>";
|
|
<% if @mailonlyonerror -%>
|
|
Unattended-Upgrade::MailOnlyOnError "true";
|
|
<% end -%>
|