From 1d8b7c3bea565b78f1c831e9812140e543854a6e Mon Sep 17 00:00:00 2001 From: Ludovic Poujol Date: Tue, 24 Nov 2020 11:19:18 +0100 Subject: [PATCH] apt: disable APT Periodic This interfere with our usual workflow (listupgrade) Note : Using 0 instead of false is intentional, The value is used by the apt-daily script that except a "0" to disable itself. --- CHANGELOG.md | 1 + apt/tasks/config.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcb3cec5..c0427b2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ The **patch** part changes incrementally at each release. ### Changed +* apt: disable APT Periodic * evoacme: upstream release 20.11 ### Fixed diff --git a/apt/tasks/config.yml b/apt/tasks/config.yml index 988aac7a..48892b9e 100644 --- a/apt/tasks/config.yml +++ b/apt/tasks/config.yml @@ -11,6 +11,7 @@ with_items: - { line: "APT::Install-Recommends \"false\";", regexp: 'APT::Install-Recommends' } - { line: "APT::Install-Suggests \"false\";", regexp: 'APT::Install-Suggests' } + - { line: "APT::Periodic::Enable \"0\";", regexp: 'APT::Periodic::Enable' } when: apt_evolinux_config tags: - apt