From 5c67c0d93509b8c8b4c09d7a3777835537383813 Mon Sep 17 00:00:00 2001 From: Dick Visser Date: Fri, 27 Nov 2020 00:46:55 +0100 Subject: [PATCH] Install packages in one step. By @dnmvisser (#43) --- tasks/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index abf711e..61bf46a 100755 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -15,9 +15,8 @@ - name: Install required System Packages package: - pkg: "{{ item }}" + name: "{{ borg_packages }}" state: present - with_items: "{{ borg_packages }}" - name: Update setuptools if needed tags: skip_ansible_lint