mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-02-24 05:45:28 +08:00
7 lines
90 B
Bash
7 lines
90 B
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
while true; do
|
|
php -f /var/www/html/cron.php &
|
|
sleep 5m
|
|
done
|