bitwarden

This commit is contained in:
jaydee 2024-06-04 00:54:11 +02:00
parent 59c13bb689
commit 73abfaa6f1

View File

@ -5,18 +5,18 @@
# DOCKER_IMAGE: docker-tasmota # DOCKER_IMAGE: docker-tasmota
# FWS: tasmota # FWS: tasmota
tasks: tasks:
- name: Build tasmota - name: Fetch tasmota
ansible.builtin.shell: ansible.builtin.shell:
cmd: 'git fetch https://github.com/arendst/Tasmota.git {{ BRANCH }}' cmd: 'git fetch https://github.com/arendst/Tasmota.git {{ BRANCH }}'
chdir: /share/docker_data/docker-tasmota/Tasmota chdir: /share/docker_data/docker-tasmota/Tasmota
when: inventory_hostname in groups['nas'] when: inventory_hostname in groups['nas']
- name: Build tasmota - name: Checkout tasmota branch
ansible.builtin.shell: ansible.builtin.shell:
cmd: 'git checkout --force {{ BRANCH }}' cmd: 'git checkout --force {{ BRANCH }}'
chdir: /share/docker_data/docker-tasmota/Tasmota chdir: /share/docker_data/docker-tasmota/Tasmota
when: inventory_hostname in groups['nas'] when: inventory_hostname in groups['nas']
- name: Build tasmota - name: Pull tasmota
ansible.builtin.shell: ansible.builtin.shell:
cmd: 'git pull' cmd: 'git pull'
chdir: /share/docker_data/docker-tasmota/Tasmota chdir: /share/docker_data/docker-tasmota/Tasmota