bitwarden

This commit is contained in:
jaydee 2024-05-27 14:39:37 +02:00
parent 5f04948e43
commit 52d34d1afd

View File

@ -7,7 +7,7 @@
tasks:
- name: Build tasmota
ansible.builtin.shell:
cmd: 'git fetch https://github.com/arendst/Tasmota.git development'
cmd: 'git fetch https://github.com/arendst/Tasmota.git {{ BRANCH }}'
chdir: /share/docker_data/docker-tasmota/Tasmota
when: inventory_hostname in groups['nas']
@ -25,6 +25,10 @@
ansible.builtin.shell:
cmd: '/share/ZFS530_DATA/.qpkg/container-station/bin/docker run --rm -v /share/docker_data/docker-tasmota/Tasmota:/tasmota -u $UID:$GID {{ DOCKER_IMAGE }} -e {{ FWS }}'
chdir: /share/docker_data/docker-tasmota/
when: inventory_hostname in groups['nas']
when: FWS != "all"
- name: Build tasmota
ansible.builtin.shell:
cmd: '/share/ZFS530_DATA/.qpkg/container-station/bin/docker run --rm -v /share/docker_data/docker-tasmota/Tasmota:/tasmota -u $UID:$GID {{ DOCKER_IMAGE }}'
chdir: /share/docker_data/docker-tasmota/
when: FWS == "all"