From 33f22b32a4b66f29d68ff1159833166d34df5fd4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 5 May 2016 12:16:37 +0300 Subject: [PATCH] roles/common: Update sources for cron-apt The system's apt configuration is using restricted and multiverse so the security sources list should as well. --- roles/common/templates/security.sources.list.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/common/templates/security.sources.list.j2 b/roles/common/templates/security.sources.list.j2 index 4adefa0..518b11e 100644 --- a/roles/common/templates/security.sources.list.j2 +++ b/roles/common/templates/security.sources.list.j2 @@ -1,5 +1,5 @@ {% if ansible_distribution == 'Ubuntu' %} -deb http://security.ubuntu.com/ubuntu {{ ansible_distribution_release }}-security main universe +deb http://security.ubuntu.com/ubuntu {{ ansible_distribution_release }}-security main restricted universe multiverse {% elif ansible_distribution == 'Debian' %} deb http://security.debian.org/ {{ ansible_distribution_release }}/updates main {% endif %}