Files
configpolicy/homeassistant.yml
Dustin C. Hatch d446653296 homeassistant: Split out Zigbee/Zwave playbooks
To make it simpler to apply policy specifically for Zibgee2MQTT or
ZWaveJS2MQTT, I've split them into their own playbooks.
2021-12-18 16:45:52 -06:00

25 lines
513 B
YAML

- hosts: home-assistant
roles:
- role: hass-dhcp
tags: hass-dhcp
- role: apache
vars:
default_apache_ssl_vhost: false
tags: apache
- role: homeassistant
tags: homeassistant
- role: mosquitto
tags: mosquitto
tasks:
- name: ensure homeassistant is running
service:
name: homeassistant
state: started
- name: ensure apache is running
service:
name: httpd
state: started
- import_playbook: zwavejs2mqtt.yml
- import_playbook: zigbee2mqtt.yml