1234567891011121314151617181920212223242526 |
- {% if ansible_prolog -%}
- {% from 'templates/ansible/prolog.j2' import prolog with context %}
- {{ prolog('//') }}
- {% endif -%}
- APT::Periodic::Update-Package-Lists "1";
- APT::Periodic::Unattended-Upgrade "1";
- Unattended-Upgrade::Mail "root";
- Unattended-Upgrade::Origins-Pattern {
-
-
-
-
- "o=Debian,a=wheezy";
- "o=Debian,a=wheezy-updates";
- "origin=Debian,archive=wheezy,label=Debian-Security";
- {% if auto_upgrade_additional_patterns %}
- {% for pattern in auto_upgrade_additional_patterns %}
- "{{ pattern }}";
- {% endfor %}
- {% endif %}
- };
|