From 8a787b87c8794871643019b9b977ef08a773e5e0 Mon Sep 17 00:00:00 2001 From: Denis Knauf Date: Thu, 19 Sep 2024 21:12:22 +0200 Subject: [PATCH] apt_clean default false --- tasks/os-debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/os-debian.yml b/tasks/os-debian.yml index b794330..0c92993 100644 --- a/tasks/os-debian.yml +++ b/tasks/os-debian.yml @@ -7,7 +7,7 @@ copy: dest: /etc/apt/apt.conf.d/99AutomaticClean content: | - Aptitude::Clean-After-Install "{{if true == apt_clean_after_install || apt_proxy is defined then 'true' else 'false'}}"; + Aptitude::Clean-After-Install "{{if true == (apt_clean_after_install|default(false)) || apt_proxy is defined then 'true' else 'false'}}"; owner: root group: root mode: 0644