Files
hassio-addons/fireflyiii/rootfs/templates/cronupdate
2022-02-14 14:08:06 +01:00

12 lines
480 B
Plaintext

#!/usr/bin/env bashio
(
bashio::log.info "Running update according to defined schedule" > /dev/stdout
if bashio::config.true 'silent'; then
bashio::log.warning "Silent mode activated. Only errors will be shown. Please disable in addon options if you need to debug" > /dev/stdout
/usr/local/bin/php /var/www/html/artisan firefly:cron >/dev/null 2> /dev/stdout
else
/usr/local/bin/php /var/www/html/artisan firefly:cron > /dev/stdout 2> /dev/stdout
fi
) &>/proc/1/fd/1