aboutsummaryrefslogtreecommitdiff
path: root/files/squeeze/50unattended-upgrades
diff options
context:
space:
mode:
authornadir <nadir-technik@nadir.org>2012-11-12 23:27:04 +0100
committernadir <nadir-technik@nadir.org>2012-11-12 23:27:04 +0100
commite890284b7ac93c485463aec24c248c145631c3aa (patch)
treed5678543b868a7700b60e910e1fe112964a2df8d /files/squeeze/50unattended-upgrades
parent9ab1f33798e2195755584f53a1d0374be9f6ee39 (diff)
downloadpuppet-apt-e890284b7ac93c485463aec24c248c145631c3aa.tar.gz
puppet-apt-e890284b7ac93c485463aec24c248c145631c3aa.tar.bz2
added release-specific config files for unattended upgrades
Diffstat (limited to 'files/squeeze/50unattended-upgrades')
-rw-r--r--files/squeeze/50unattended-upgrades34
1 files changed, 34 insertions, 0 deletions
diff --git a/files/squeeze/50unattended-upgrades b/files/squeeze/50unattended-upgrades
new file mode 100644
index 0000000..7b3c829
--- /dev/null
+++ b/files/squeeze/50unattended-upgrades
@@ -0,0 +1,34 @@
+// Automatically upgrade packages from these (origin, archive) pairs
+Unattended-Upgrade::Allowed-Origins {
+ "${distro_id} stable";
+ "${distro_id} ${distro_codename}-security";
+// "${distro_id} ${distro_codename}-updates";
+// "${distro_id} ${distro_codename}-proposed-updates";
+};
+
+// List of packages to not update
+Unattended-Upgrade::Package-Blacklist {
+// "vim";
+// "libc6";
+// "libc6-dev";
+// "libc6-i686";
+};
+
+// Send email to this address for problems or packages upgrades
+// If empty or unset then no email is sent, make sure that you
+// have a working mail setup on your system. The package 'mailx'
+// must be installed or anything that provides /usr/bin/mail.
+//Unattended-Upgrade::Mail "root@localhost";
+
+// Do automatic removal of new unused dependencies after the upgrade
+// (equivalent to apt-get autoremove)
+//Unattended-Upgrade::Remove-Unused-Dependencies "false";
+
+// Automatically reboot *WITHOUT CONFIRMATION* if a
+// the file /var/run/reboot-required is found after the upgrade
+//Unattended-Upgrade::Automatic-Reboot "false";
+
+
+// Use apt bandwidth limit feature, this example limits the download
+// speed to 70kb/sec
+//Acquire::http::Dl-Limit "70"; \ No newline at end of file