Files
ansible/roles/nextcloud/tasks/cron.yml
VC 0b7fc894da
All checks were successful
ansible-lint / lint-everything (push) Successful in 3s
: improve nextcloud installation
2025-03-11 11:12:56 +01:00

9 lines
196 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"