ansible/playbooks/build_tasmota.yml

9 lines
253 B
YAML
Raw Normal View History

2024-05-26 17:16:28 +02:00
- hosts: nas
name: Build tasmota
ignore_unreachable: false
tasks:
- name: Build tasmota
2024-05-26 17:18:04 +02:00
ansible.builtin.shell:
cmd: './compile.sh'
chdir: /share/docker_data/docker-tasmota/
2024-05-26 17:16:28 +02:00
when: inventory_hostname in groups['nas']