mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-15 12:14:43 +02:00
feat(postfix): relay SMTP Gmail + suppression règles Conan nftables
- postfix_relay: switch Brevo → Gmail SMTP (smtp.gmail.com:587, App Password) - smtp_generic_maps: réécriture expéditeur root@lab.local → aliyesilkaya93@gmail.com - nftables: suppression DNAT/NAT Conan Exiles (ports 7777/7778/27015) - gateway handler: reloaded → restarted (flush complet des règles nft) - hermes_agent: pip → uv pour installation qdrant-client (venv sans pip binaire) - CLAUDE.md: corrections funk-cluster, hermes-switch, RAID5, postfix - docs: admin/infra/email.md — procédure complète relay Gmail Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
24c0bf9e12
commit
8da92cb721
13 changed files with 552 additions and 145 deletions
|
|
@ -76,14 +76,17 @@
|
|||
|
||||
# --- Packages Python pour les skills ---
|
||||
|
||||
- name: Install Python packages for Hermes skills
|
||||
ansible.builtin.pip:
|
||||
name: "qdrant-client>=1.12.0"
|
||||
executable: "{{ hermes_home }}/.hermes/hermes-agent/venv/bin/pip"
|
||||
state: present
|
||||
- name: Install Python packages for Hermes skills (via uv)
|
||||
ansible.builtin.command:
|
||||
cmd: >
|
||||
{{ hermes_home }}/.local/bin/uv pip install qdrant-client>=1.12.0
|
||||
--python {{ hermes_home }}/.hermes/hermes-agent/venv/bin/python
|
||||
environment:
|
||||
UV_CACHE_DIR: /tmp/uv-cache
|
||||
become: true
|
||||
become_user: "{{ hermes_user }}"
|
||||
become_user: root
|
||||
when: hermes_binary.stat.exists
|
||||
changed_when: false
|
||||
|
||||
# --- Configuration ---
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue