homeassistant: install dependencies
authorKristof Provost <kp@FreeBSD.org>
Sun, 5 May 2024 15:56:09 +0000 (17:56 +0200)
committerKristof Provost <kp@FreeBSD.org>
Sun, 5 May 2024 15:56:09 +0000 (17:56 +0200)
Without these we fail to install a bunch of pip packages at first start.

ansible/homeassistant.yaml

index cc14155..2a4c4b2 100644 (file)
         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 }}"