first commit
This commit is contained in:
commit
9218e1f02e
7 changed files with 353 additions and 0 deletions
18
templates/auto-upgrades.j2
Normal file
18
templates/auto-upgrades.j2
Normal 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue