further modifications to peer count restart script

This commit is contained in:
crowetic 2024-11-04 12:05:41 -08:00
parent 4aaf637579
commit 9ca72be815

View File

@ -72,7 +72,6 @@ main_loop() {
log "Set peer count: $ACCEPTABLE_PEERS" log "Set peer count: $ACCEPTABLE_PEERS"
fi fi
sleep 300 # Wait for 5 minutes before next check sleep 300 # Wait for 5 minutes before next check
done done
} }
@ -84,7 +83,8 @@ if [ "$USE_SCREEN" = true ]; then
log "Acceptable peer count set: $ACCEPTABLE_PEERS" log "Acceptable peer count set: $ACCEPTABLE_PEERS"
screen -x peer_count_monitor screen -x peer_count_monitor
else else
screen -dmS peer_count_monitor bash -c "$(declare -f log get_number_of_connections restart_qortal main_loop); ACCEPTABLE_PEERS=$ACCEPTABLE_PEERS; main_loop" screen -dmS peer_count_monitor bash -c "$(declare -f log get_number_of_connections restart_qortal main_loop); ACCEPTABLE_PEERS=$ACCEPTABLE_PEERS; QORTAL_DIR=$QORTAL_DIR; LOG_FILE=$LOG_FILE; main_loop"
main_loop"
log "Started in a new screen session." log "Started in a new screen session."
log "Acceptable peer count set: $ACCEPTABLE_PEERS" log "Acceptable peer count set: $ACCEPTABLE_PEERS"
fi fi