1177922de05c27e4ef3a60607910e7d390ac87a0
[puppet-modules/puppetlabs-apt.git] / templates / 50unattended-upgrades.erb
1 // Automatically upgrade packages from these (origin:archive) pairs
2 <%- if @legacy_origin -%>
3 Unattended-Upgrade::Allowed-Origins {
4 <%- else -%>
5 Unattended-Upgrade::Origins-Pattern {
6 <%- end -%>
7 <% @origins.each do |origin| -%>
8         "<%= origin %>";
9 <% end -%>
10 };
11
12 // List of packages to not update
13 Unattended-Upgrade::Package-Blacklist {
14 <% @blacklist.each do |package| -%>
15         "<%= package %>";
16 <% end -%>
17 };
18
19 // This option allows you to control if on a unclean dpkg exit
20 // unattended-upgrades will automatically run 
21 //   dpkg --force-confold --configure -a
22 // The default is true, to ensure updates keep getting installed
23 Unattended-Upgrade::AutoFixInterruptedDpkg "<%= @auto_fix %>";
24
25 // Split the upgrade into the smallest possible chunks so that
26 // they can be interrupted with SIGUSR1. This makes the upgrade
27 // a bit slower but it has the benefit that shutdown while a upgrade
28 // is running is possible (with a small delay)
29 Unattended-Upgrade::MinimalSteps "<%= @minimal_steps %>";
30
31 // Install all unattended-upgrades when the machine is shuting down
32 // instead of doing it in the background while the machine is running
33 // This will (obviously) make shutdown slower
34 Unattended-Upgrade::InstallOnShutdown "<%= @install_on_shutdown %>";
35
36 // Send email to this address for problems or packages upgrades
37 // If empty or unset then no email is sent, make sure that you
38 // have a working mail setup on your system. A package that provides
39 // 'mailx' must be installed.
40 <% if @mail_to != "NONE" %>Unattended-Upgrade::Mail "<%= @mail_to %>";<% end %>
41
42 // Set this value to "true" to get emails only on errors. Default
43 // is to always send a mail if Unattended-Upgrade::Mail is set
44 <% if @mail_to != "NONE" %>Unattended-Upgrade::MailOnlyOnError "<%= @mail_only_on_error %>";<% end %>
45
46 // Do automatic removal of new unused dependencies after the upgrade
47 // (equivalent to apt-get autoremove)
48 Unattended-Upgrade::Remove-Unused-Dependencies "<%= @remove_unused %>";
49
50 // Automatically reboot *WITHOUT CONFIRMATION* if a 
51 // the file /var/run/reboot-required is found after the upgrade 
52 Unattended-Upgrade::Automatic-Reboot "<%= @auto_reboot %>";
53
54
55 // Use apt bandwidth limit feature, this example limits the download
56 // speed to 70kb/sec
57 <% if @dl_limit != "NONE" %>Acquire::http::Dl-Limit "<%= @dl_limit %>";<% end %>