Set crons as app user for installer

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-06-09 14:21:38 -07:00
parent 6a8824a467
commit a766572a2f

View file

@ -237,7 +237,7 @@ install_snipeit () {
log "php $APP_PATH/artisan migrate --force"
echo "* Creating scheduler cron."
(crontab -l ; echo "* * * * * /usr/bin/php $APP_PATH/artisan schedule:run >> /dev/null 2>&1") | crontab -
(run_as_app_user crontab -l ; echo "* * * * * /usr/bin/php $APP_PATH/artisan schedule:run >> /dev/null 2>&1") | crontab -
}
set_firewall () {