From faa8f6c27bd35b21e24d54c9cf29da789527fea6 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 18 Jun 2021 08:55:55 -0700 Subject: [PATCH] openqa/worker: install packages used by tests A recent test has a couple of perl deps, we need to ensure these are installed on the worker hosts. Signed-off-by: Adam Williamson --- roles/openqa/worker/tasks/main.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/roles/openqa/worker/tasks/main.yml b/roles/openqa/worker/tasks/main.yml index b75b23e2fc..a42f5b55c6 100644 --- a/roles/openqa/worker/tasks/main.yml +++ b/roles/openqa/worker/tasks/main.yml @@ -96,7 +96,14 @@ tags: - packages -- name: Install packages +- name: Install packages used by tests + package: + name: ['perl-JSON', 'perl-REST-Client'] + state: latest + tags: + - packages + +- name: Install packages used by ansible plays package: name: ['python3-libselinux', 'git'] state: present