feat(ansible/cron): Ajoute une tâche cron pour la commande cota

 feat(src/Command): Crée la commande ecosplay:cota

🐛 fix(src/Repository): Corrige une erreur dans le repository MembersCotisations
This commit is contained in:
Serreau Jovann
2025-11-22 23:56:25 +01:00
parent 57cc319927
commit de43b9e1c1
3 changed files with 90 additions and 0 deletions

View File

@@ -230,3 +230,11 @@
become: false
args:
chdir: "{{ path }}"
- name: "Cota - Auto"
ansible.builtin.cron:
name: "E-Cosplay - Cota Auto"
minute: "0"
hour: "7,14,17"
user: "root"
job: "php {{ path }}/bin/console ecosplay:cota"
state: present