ajout de linterface hermes + route

This commit is contained in:
alkatrazz 2026-05-12 18:01:50 +02:00
parent 5615ead566
commit 572e949ce4
5 changed files with 60 additions and 1 deletions

View file

@ -132,6 +132,24 @@
daemon_reload: true
state: started
# --- Dashboard systemd ---
- name: Deploy hermes-dashboard systemd service
ansible.builtin.template:
src: hermes-dashboard.service.j2
dest: /etc/systemd/system/hermes-dashboard.service
mode: '0644'
notify:
- Reload systemd
- Restart hermes-dashboard
- name: Enable and start hermes-dashboard
ansible.builtin.systemd:
name: hermes-dashboard
enabled: true
daemon_reload: true
state: started
# --- Wrapper global ---
- name: Deploy hermes global wrapper (/usr/local/bin/hermes)