Files
ansible/roles/nextcloud/tasks/cron.yml
VC ad3009d39c
All checks were successful
ansible-lint / lint-everything (push) Successful in 3s
🎨: completely mask stdout/stderr in php webapps’ cron
2025-03-14 11:37:49 +01:00

9 lines
197 B
YAML

---
- name: Install nextcloud cron
ansible.builtin.cron:
user: www-data
name: nextcloud cron
minute: "*/15"
job: "/usr/bin/php -f {{ nextcloud_app_home }}/cron.php &> /dev/null"