release candidate

This commit is contained in:
2025-10-12 16:50:32 -07:00
parent 3432e8ac9f
commit 699d7f54c8
20 changed files with 415 additions and 150 deletions

View File

@ -151,4 +151,28 @@
msg="{{ docker_output.stdout_lines }}"
msg="{{ docker_output.stderr_lines }}"
# create streaming service
# this used to live with the streamer but i moved it here because most of the time this will be split up
# the names don't make as much sense anymore either...
# oh well...
- name: video_capture - fil - ffmpeg service
#when: false
block:
- name: video_capture - streamer - copy service script
template:
src: stream_service.sh
dest: "{{ streaming_working_folder }}/stream_service.sh"
mode: 0755
- name: video_capture - streamer - create service file
template:
src: stream_service.service
dest: /etc/systemd/system/stream_service.service
mode: 0644
- name: video_capture - streamer - daemon reload
systemd:
daemon_reload: yes
...