web_logs: Add script to combine log files

This commit is contained in:
Timo Makinen 2025-03-08 20:59:48 +00:00
parent cf87333ef8
commit ffe43b8498
2 changed files with 78 additions and 0 deletions

View file

@ -39,3 +39,11 @@
owner: root
group: "{{ ansible_wheel }}"
follow: false
- name: Copy log combiner
ansible.builtin.copy:
dest: /usr/local/bin/combine-logs
src: combine-logs.py
mode: "0755"
owner: root
group: "{{ ansible_wheel }}"