summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorFelix Barbeira <fbarbeira@gmail.com>2015-10-26 09:13:45 +0100
committerFelix Barbeira <fbarbeira@gmail.com>2015-10-26 09:13:45 +0100
commit032022b6a83f5a207b29bf65aeb6399a0c372fef (patch)
tree11ae9e6d57692d8e7db12ab5fc38c5c23c9be3df /manifests
parente2c493fc0fb5efe0500e135d6ed1b78f7c5b5038 (diff)
Include variable 'RandomSleep'.
When the apt job starts, it will sleep for a random period between 0 and APT::Periodic::RandomSleep seconds. The default value is "1800" so that the script will stall for up to 30 minutes (1800 seconds) so that the mirror servers are not crushed by everyone running their updates all at the same time. Only set this to 0 if you use a local mirror and don't mind the load spikes. Note that while the apt job is sleeping it will cause the execution of the rest of your cron.daily jobs to be delayed.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp1
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 6a64f0a..7fe64ca 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -11,6 +11,7 @@ class unattended_upgrades (
$minimal_steps = true,
$origins = $::unattended_upgrades::params::origins,
$package_ensure = installed,
+ $random_sleep = undef,
$size = 0,
$update = 1,
$upgrade = 1,