From 8e7a92a55321bd08f92d5afa5e79315845574a4d Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Sun, 5 May 2024 17:56:09 +0200 Subject: [PATCH] homeassistant: install dependencies Without these we fail to install a bunch of pip packages at first start. --- ansible/homeassistant.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ansible/homeassistant.yaml b/ansible/homeassistant.yaml index cc14155..2a4c4b2 100644 --- a/ansible/homeassistant.yaml +++ b/ansible/homeassistant.yaml @@ -16,6 +16,17 @@ owner: "domotica" group: "domotica" become: true + - name: Install required packages + community.general.pkgng: + name: "{{ item }}" + state: present + with_items: + - math/openblas + - databases/py-sqlite3 + - databases/sqlite3 + - graphics/openjpeg + - multimedia/ffmpeg + become: true - name: install required python modules (pre-install) pip: name: "{{ item }}" -- 2.51.0