aports/community/nextcloud/nextcloud.cron
2021-09-13 06:55:20 +00:00

7 lines
192 B
Bash

#!/bin/sh
# Run only when nextcloud service is started.
if rc-service nextcloud -q status >/dev/null 2>&1; then
su nextcloud -s /bin/sh -c 'php8 -f /usr/share/webapps/nextcloud/cron.php'
fi