Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions files/scripts/syncd_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ function check_warm_boot()
fi
}

function check_fast_boot()
{
if [[ $($SONIC_DB_CLI STATE_DB GET "FAST_REBOOT|system") == "1" ]]; then
FAST_BOOT="true"
else
FAST_BOOT="false"
fi
}

function wait_for_database_service()
{
# Wait for redis server start before database clean
Expand Down Expand Up @@ -140,10 +149,14 @@ stop() {

lock_service_state_change
check_warm_boot
check_fast_boot
debug "Warm boot flag: ${SERVICE}$DEV ${WARM_BOOT}."
debug "Fast boot flag: ${SERVICE}$DEV ${FAST_BOOT}."

if [[ x"$WARM_BOOT" == x"true" ]]; then
TYPE=warm
elif [[ x"$FAST_BOOT" == x"true" ]]; then
TYPE=fast
else
TYPE=cold
fi
Expand Down