more renderd paths

This commit is contained in:
Greg 2022-06-16 13:51:27 -04:00
parent a05e47f689
commit ded334205f
No known key found for this signature in database
GPG Key ID: B016D27A4C5E4363

4
run.sh
View File

@ -168,7 +168,7 @@ if [ "$1" == "run" ]; then
setPostgresPassword setPostgresPassword
# Configure renderd threads # Configure renderd threads
sed -i -E "s/num_threads=[0-9]+/num_threads=${THREADS:-4}/g" /usr/local/etc/renderd.conf sed -i -E "s/num_threads=[0-9]+/num_threads=${THREADS:-4}/g" /etc/renderd.conf
# start cron job to trigger consecutive updates # start cron job to trigger consecutive updates
if [ "${UPDATES:-}" == "enabled" ] || [ "${UPDATES:-}" == "1" ]; then if [ "${UPDATES:-}" == "enabled" ] || [ "${UPDATES:-}" == "1" ]; then
@ -181,7 +181,7 @@ if [ "$1" == "run" ]; then
} }
trap stop_handler SIGTERM trap stop_handler SIGTERM
sudo -u renderer renderd -f -c /usr/local/etc/renderd.conf & sudo -u renderer renderd -f -c /etc/renderd.conf &
child=$! child=$!
wait "$child" wait "$child"