You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
833 B
34 lines
833 B
2 years ago
|
# https://www.home-assistant.io/hassio/installation/
|
||
|
|
||
|
- hosts: on-fire-within
|
||
|
become: yes
|
||
|
tasks:
|
||
|
# Forgot what I need this for...
|
||
|
- name: install software-properties-common
|
||
|
apt: name=software-properties-common
|
||
|
|
||
|
- name: install other dependencies for hass.io
|
||
|
apt:
|
||
|
name:
|
||
|
- apparmor-utils
|
||
|
- apt-transport-https
|
||
|
- avahi-daemon
|
||
|
- ca-certificates
|
||
|
- curl
|
||
|
- dbus
|
||
|
- jq
|
||
|
- network-manager
|
||
|
- socat
|
||
|
|
||
|
# https://www.home-assistant.io/integrations/bluetooth_tracker/
|
||
|
- bluetooth
|
||
|
- libbluetooth-dev
|
||
|
update_cache: yes
|
||
|
- service:
|
||
|
name: ModemManager
|
||
|
enabled: false
|
||
|
|
||
|
# homekit
|
||
|
- name: install dependenies for homekit
|
||
|
apt: name=libavahi-compat-libdnssd-dev
|