fix(ansible): ignore pkill errors, add motions.db sync task

This commit is contained in:
2026-03-28 21:04:49 +01:00
parent 22067fd162
commit 0bd1c08cb2
+7
View File
@@ -39,6 +39,13 @@
- name: stop existing streamlit process
ansible.builtin.shell:
cmd: pkill -f "streamlit run Home.py" || true
ignore_errors: yes
- name: sync motions.db to server
ansible.builtin.copy:
src: ../data/motions.db
dest: /home/webapps/motief/data/motions.db
mode: '0644'
- name: start streamlit
ansible.builtin.shell: