mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
9 lines
308 B
YAML
9 lines
308 B
YAML
|
- hosts: nas
|
||
|
name: Build tasmota
|
||
|
ignore_unreachable: false
|
||
|
tasks:
|
||
|
- name: Build tasmota
|
||
|
ansible.builtin.shell:
|
||
|
cmd: 'git fetch https://github.com/arendst/Tasmota.git development'
|
||
|
chdir: /share/docker_data/docker-tasmota/Tasmota
|
||
|
when: inventory_hostname in groups['nas']
|