12345678910111213141516171819202122 |
- {% if ansible_controlled is defined and ansible_controlled != "" %}
- //
- // {{ ansible_controlled }}
- //
- {% endif %}
- APT::Periodic::Update-Package-Lists "1";
- APT::Periodic::Unattended-Upgrade "1";
- Unattended-Upgrade::Mail "root";
- //Unattended-Upgrade::MailOnlyOnError "true";
- // Automatically upgrade packages from these origin patterns
- Unattended-Upgrade::Origins-Pattern {
- "o=Debian,a=squeeze-lts";
- // "origin=Debian,archive=stable,label=Debian-Security";
- // "origin=Debian,archive=oldstable,label=Debian-Security";
- {% if auto_upgrade_additional_patterns %}
- {% for pattern in auto_upgrade_additional_patterns %}
- "{{ pattern }}";
- {% endfor %}
- {% endif %}
- };
|