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.
30 lines
707 B
30 lines
707 B
5 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
|
||
|
update_cache: yes
|
||
|
- service:
|
||
|
name: ModemManager
|
||
|
enabled: false
|
||
|
|
||
|
# homekit
|
||
|
- name: install dependenies for homekit
|
||
|
apt: name=libavahi-compat-libdnssd-dev
|