mirror of
https://forge.chapril.org/tykayn/workflow
synced 2025-06-20 01:44:43 +02:00
8 lines
357 B
YAML
8 lines
357 B
YAML
- name: cronjob pour le workflow nextcloud toutes les 5 minutes
|
|
hosts: localhost
|
|
tasks:
|
|
- name: "vérifier l'existence d'un cronjob pour le workdflow nextcloud"
|
|
ansible.builtin.cron:
|
|
name: "run nextcloud workflows of tykayn"
|
|
minute: "*/5"
|
|
job: "/bin/bash ~/Nextcloud/ressources/workflow_nextcloud/cronjob_nextcloud.sh"
|