From 887219f86cee1b69f1f44f5a8bb9ade175f68fbf Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Thu, 11 Aug 2016 10:25:45 +0200 Subject: [PATCH] Force install OpenSSL from backports when nginx uses backports --- tasks/install_Debian.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tasks/install_Debian.yml b/tasks/install_Debian.yml index 8033996..ca68e59 100644 --- a/tasks/install_Debian.yml +++ b/tasks/install_Debian.yml @@ -5,6 +5,13 @@ update_cache=yes cache_valid_time=3600 +- name: APT | Force OpenSSL from backports (fix dependency break) + apt: > + pkg=openssl + state=present + default_release={{ ansible_distribution_release + '-backports' }} + when: nginx_backports + - name: APT | Install nginx and dependencies apt: > pkg={{ nginx_apt_package }}