first commit

This commit is contained in:
sujiba 2024-09-17 16:50:13 +02:00
commit 9218e1f02e
7 changed files with 353 additions and 0 deletions

View file

@ -0,0 +1,18 @@
#jinja2: lstrip_blocks: True
# {{ ansible_managed }}
{% if update_package_lists is defined %}
APT::Periodic::Update-Package-Lists "{{ update_package_lists }}";
{% endif %}
{% if unattended_upgrade is defined %}
APT::Periodic::Unattended-Upgrade "{{ unattended_upgrade }}";
{% endif %}
{% if download_upgradeable_packages is defined %}
APT::Periodic::Download-Upgradeable-Packages "{{ download_upgradeable_packages }}";
{% endif %}
{% if auto_clean_interval is defined %}
APT::Periodic::AutocleanInterval "{{ auto_clean_interval }}";
{% endif %}