From 8de87c86cf21dda88a1740be46fb5f6c32897538 Mon Sep 17 00:00:00 2001 From: spigad Date: Tue, 16 Jul 2019 14:43:50 +0200 Subject: [PATCH] fix for https --- tasks/ubuntu.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/ubuntu.yml b/tasks/ubuntu.yml index 8e6dd0c..3a771f5 100644 --- a/tasks/ubuntu.yml +++ b/tasks/ubuntu.yml @@ -13,6 +13,9 @@ - ansible_version.minor >= 5 - ansible_distribution_version is version('16.04', '!=') +- name: Install docker requisites + apt: name=apt-transport-https,ca-certificates,software-properties-common + - name: "[Ubuntu] Add docker apt repo" apt_repository: repo='deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ ansible_distribution_release }} stable'