aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-05-26 14:39:04 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-05-26 14:39:04 -0300
commit992b442ee0b488931575b18d5fb24f5a52b5e653 (patch)
tree10c2089d19611f005781a5f0e2b220b86226f4b8 /files
parent869db00cde98be60850f1c61297756635b90fee1 (diff)
downloadpuppet-apt-992b442ee0b488931575b18d5fb24f5a52b5e653.tar.gz
puppet-apt-992b442ee0b488931575b18d5fb24f5a52b5e653.tar.bz2
Removing old unattended-upgrades' configs
Diffstat (limited to 'files')
-rw-r--r--files/lucid/50unattended-upgrades34
-rw-r--r--files/wheezy/50unattended-upgrades63
2 files changed, 0 insertions, 97 deletions
diff --git a/files/lucid/50unattended-upgrades b/files/lucid/50unattended-upgrades
deleted file mode 100644
index 9c22a64..0000000
--- a/files/lucid/50unattended-upgrades
+++ /dev/null
@@ -1,34 +0,0 @@
-// this file is managed by puppet !
-//
-//See https://wiki.ubuntu.com/AutomaticUpdates for more details about this feature.
-
-// allowed (origin, archive) pairs
-Unattended-Upgrade::Allowed-Origins {
- "Ubuntu lucid-security";
- "Ubuntu lucid-updates";
-};
-
-APT::Periodic::Update-Package-Lists "1";
-APT::Periodic::Unattended-Upgrade "1";
-Unattended-Upgrade::Mail "root";
-Unattended-Upgrade::MailOnlyOnError "true";
-
-APT::UnattendedUpgrades::LogDir "/var/log/";
-APT::UnattendedUpgrades::LogFile "unattended_upgrades.log";
-
-Unattended-Upgrade::Package-Blacklist {
- // we don't want the kernel to be updated so nagios still can give a warning if there is
- // a manual update (and reboot) left
-
- "linux-image-*";
-
- // unfortunately there seems to be a bug in unattended-upgrades <= 0.62 that wildcards aren't recognized:
- //2009-12-11 13:41:43,267 INFO Initial blacklisted packages: linux-image-*
- //2009-12-11 13:41:43,267 INFO Starting unattended upgrades script
- //2009-12-11 13:41:43,267 INFO Allowed origins are: ["['Debian', 'stable']", "['Debian-Security', 'stable']"]
- //2009-12-11 13:41:45,233 INFO Packages that are upgraded: linux-image-2.6.26-2-amd64
- //2009-12-11 13:41:45,233 INFO Writing dpkg log to '/var/log/unattended-upgrades-dpkg_2009-12-11_13:41:45.233713.log'
- //2009-12-11 13:42:11,988 INFO All upgrades installed
-
-};
-
diff --git a/files/wheezy/50unattended-upgrades b/files/wheezy/50unattended-upgrades
deleted file mode 100644
index 300f1fe..0000000
--- a/files/wheezy/50unattended-upgrades
+++ /dev/null
@@ -1,63 +0,0 @@
-// Automatically upgrade packages from these origin patterns
-Unattended-Upgrade::Origins-Pattern {
- // Archive or Suite based matching:
- // Note that this will silently match a different release after
- // migration to the specified archive (e.g. testing becomes the
- // new stable).
- "o=Debian,a=stable";
- "o=Debian,a=stable-updates";
- "o=Debian,a=proposed-updates";
- "origin=Debian,archive=stable,label=Debian-Security";
-};
-
-// List of packages to not update
-Unattended-Upgrade::Package-Blacklist {
-// "vim";
-// "libc6";
-// "libc6-dev";
-// "libc6-i686";
-};
-
-// This option allows you to control if on a unclean dpkg exit
-// unattended-upgrades will automatically run
-// dpkg --force-confold --configure -a
-// The default is true, to ensure updates keep getting installed
-//Unattended-Upgrade::AutoFixInterruptedDpkg "false";
-
-// Split the upgrade into the smallest possible chunks so that
-// they can be interrupted with SIGUSR1. This makes the upgrade
-// a bit slower but it has the benefit that shutdown while a upgrade
-// is running is possible (with a small delay)
-//Unattended-Upgrade::MinimalSteps "true";
-
-// Install all unattended-upgrades when the machine is shuting down
-// instead of doing it in the background while the machine is running
-// This will (obviously) make shutdown slower
-//Unattended-Upgrade::InstallOnShutdown "true";
-
-// 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. A package that provides
-// 'mailx' must be installed. E.g. "user@example.com"
-Unattended-Upgrade::Mail "root";
-
-// Set this value to "true" to get emails only on errors. Default
-// is to always send a mail if Unattended-Upgrade::Mail is set
-//Unattended-Upgrade::MailOnlyOnError "true";
-
-// 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";
-
-APT::Periodic::Update-Package-Lists "1";
-APT::Periodic::Download-Upgradeable-Packages "1";
-APT::Periodic::Unattended-Upgrade "1";