projects
/
pennestraat-domotica
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28f8c98
)
homeassistant: install dependencies
author
Kristof Provost
<kp@FreeBSD.org>
Sun, 5 May 2024 15:56:09 +0000
(17:56 +0200)
committer
Kristof 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
patch
|
blob
|
history
diff --git
a/ansible/homeassistant.yaml
b/ansible/homeassistant.yaml
index
cc14155
..
2a4c4b2
100644
(file)
--- 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 }}"