9 lines
208 B
Bash
Executable file
9 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Source modules.
|
|
for file in /root/.config/bash/module/*.sh; do
|
|
source "${file}"
|
|
done
|
|
|
|
docker exec -u 33 cloud php -f /var/www/html/cron.php || notify 'Nextcloud : Failed to run cron.'
|