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
# 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
|