mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
7 lines
88 B
Bash
7 lines
88 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
while true; do
|
|
php -f /var/www/html/cron.php &
|
|
sleep 5m
|
|
done
|