1
0
ansible-home-assistant/home-assistant.yml

52 lines
1.5 KiB
YAML
Raw Normal View History

2020-11-03 23:55:41 +00:00
---
- hosts: home-assistant
2021-05-24 18:26:03 +00:00
tasks:
- name: Remove automations directory
file:
path: '{{ pwd_config }}/automations'
state: absent
- name: Create automations directory
file:
path: '{{ pwd_config }}/automations'
state: directory
2021-05-24 18:26:03 +00:00
- name: Build lights automations
template:
src: lights.yaml.j2
dest: '{{ pwd_config }}/automations/lights.yaml'
2021-05-24 18:26:03 +00:00
vars:
lights:
- entityId: light.bathroom_lights
name: Bathroom Lights
- entityId: light.kitchen_lights
name: Kitchen Lights
- entityId: light.shower_lights
name: Shower Lights
- entityId: light.couch_lights
name: Couch Lights
2021-05-24 21:03:45 +00:00
- entityId: light.desk_lightbar
name: Desk Lightbar
- entityId: light.table_lamp
name: Table lamp
- name: Copy rest of automations
copy:
src: configuration/automations
dest: '{{ pwd_config }}'
directory_mode: yes
2021-05-24 22:10:22 +00:00
- name: Concat scripts
ansible.builtin.assemble:
remote_src: no
src: ./scripts
dest: '{{ pwd_config }}/scripts.yaml'
2021-11-24 23:13:32 +00:00
- name: Copy configuration
copy:
src: configuration/configuration.yaml
dest: '{{ pwd_config }}/configuration.yaml'
- name: Copy secrets
copy:
src: configuration/secrets.yaml
dest: '{{ pwd_config }}/secrets.yaml'
2021-12-06 22:31:28 +00:00
- name: Copy scripts
copy:
src: python_scripts
dest: '{{ pwd_config }}'
directory_mode: yes