From 5cbfda8f5290a004668745bc9e30490d12f1e549 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Thu, 30 Sep 2021 12:09:11 +0200 Subject: [PATCH] docker-host: install additional dependencies --- CHANGELOG.md | 1 + docker-host/tasks/main.yml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 189019f2..84670ff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ The **patch** part changes is incremented if multiple releases happen the same m * Support for Debian 11 « Bullseye » (with possible remaining blind spots) * apache: new variable for mpm mode (+ updated default config accordingly) * certbot: add script for manual deploy hooks execution +* docker-host: install additional dependencies * etc-git: purge old .git/index.lock (default: True) * evolinux-base: install molly-guard by default * generate-ldif: detect hardware raid card diff --git a/docker-host/tasks/main.yml b/docker-host/tasks/main.yml index 796c800d..d0d5c54e 100644 --- a/docker-host/tasks/main.yml +++ b/docker-host/tasks/main.yml @@ -40,6 +40,8 @@ apt: name: - docker-ce + - docker-ce-cli + - containerd.io update_cache: yes - name: python-docker is installed @@ -52,7 +54,7 @@ apt: name: python3-docker state: present - when: ansible_distribution_major_version is version('10', '>') + when: ansible_distribution_major_version is version('10', '>=') - name: Copy Docker daemon configuration file template: