From 08161dc7a19ac695f5a240601d5721f1dcac3507 Mon Sep 17 00:00:00 2001 From: Keshav Prasad <keshavprasadms@gmail.com> Date: Tue, 10 May 2022 18:25:15 +0530 Subject: [PATCH] fix: ansible required acl package on ubuntu 20 (#3327) --- ansible/bootstrap.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/bootstrap.yml b/ansible/bootstrap.yml index 7e300548f..7d8c99480 100644 --- a/ansible/bootstrap.yml +++ b/ansible/bootstrap.yml @@ -9,7 +9,7 @@ - name: Installing other packages apt: state: present - name: ['python-pkg-resources', 'python3-pip'] + name: ['python-pkg-resources', 'python3-pip', 'acl'] roles: - bootstrap_any tags: -- GitLab