apt_clean_after_install default false

This commit is contained in:
Denis Knauf 2024-09-19 21:13:26 +02:00
parent 8a787b87c8
commit 73bc81a1f5
2 changed files with 2 additions and 1 deletions

View file

@ -11,3 +11,4 @@ sshd_gssapi_authentication: 'no'
sshd_host_keys:
- '/etc/ssh/ssh_host_ed25519_key'
sshd_pubkey_authentication: 'yes'
apt_clean_after_install: false

View file

@ -7,7 +7,7 @@
copy:
dest: /etc/apt/apt.conf.d/99AutomaticClean
content: |
Aptitude::Clean-After-Install "{{if true == (apt_clean_after_install|default(false)) || apt_proxy is defined then 'true' else 'false'}}";
Aptitude::Clean-After-Install "{{if true == apt_clean_after_install || apt_proxy is defined then 'true' else 'false'}}";
owner: root
group: root
mode: 0644