This commit is contained in:
shocknet-justin 2025-08-31 15:13:34 -04:00
parent 845e180a66
commit 2af7941343
3 changed files with 11 additions and 4 deletions

View file

@ -142,8 +142,11 @@ else
# Only start services if it was a fresh install or an upgrade.
if [ "$pub_upgrade_status" -eq 0 ] || [ "$pub_upgrade_status" -eq 100 ]; then
log "Starting services..."
log "Note: LND may take several minutes to sync block headers depending on network conditions."
touch /tmp/pub_install_timestamp
if [ "$lnd_status" = "0" ] || [ "$lnd_status" = "1" ]; then
log "Note: LND may take several minutes to sync block headers depending on network conditions."
fi
TIMESTAMP_FILE=$(mktemp)
export TIMESTAMP_FILE
start_services $lnd_status $pub_upgrade_status || log_error "Failed to start services" 1
get_log_info || log_error "Failed to get log info" 1
fi