From cdb15f4aade47ea2b833915abf2f75ac38bf7749 Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Thu, 9 Jan 2025 15:43:29 -0800 Subject: [PATCH] [mailcatcher] Add pkg-config dependency pkg-config can sometimes be necessary for compiling the sqlite3 gem's C extensions, see this failure of the lib-jobs playbook: https://ansible-tower.princeton.edu/#/jobs/playbook/10600/output --- roles/mailcatcher/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/mailcatcher/tasks/main.yml b/roles/mailcatcher/tasks/main.yml index e0839ce43..4cd7933e3 100644 --- a/roles/mailcatcher/tasks/main.yml +++ b/roles/mailcatcher/tasks/main.yml @@ -2,7 +2,9 @@ # tasks file for roles/mailcatcher - name: mailcatcher | Install dependencies ansible.builtin.apt: - name: 'libsqlite3-dev' + pkg: + - libsqlite3-dev + - pkg-config state: present tags: mailcatcher