diff --git a/files/scripts/syncd.sh b/files/scripts/syncd.sh index 55e42331b..249fbe586 100755 --- a/files/scripts/syncd.sh +++ b/files/scripts/syncd.sh @@ -90,20 +90,10 @@ function startplatform() { function waitplatform() { - BOOT_TYPE=`getBootType` if [[ x"$sonic_asic_platform" == x"mellanox" ]] || [[ x"$sonic_asic_platform" == x"broadcom" ]]; then - if [[ x"$BOOT_TYPE" = @(x"fast"|x"warm"|x"fastfast") ]]; then - PMON_TIMER_STATUS=$(systemctl is-active pmon.timer) - if [[ x"$PMON_TIMER_STATUS" = x"inactive" ]]; then - systemctl start pmon.timer - else - debug "PMON service is delayed by a timer for better fast/warm boot performance" - fi - else - debug "Starting pmon service..." - /bin/systemctl start pmon - debug "Started pmon service" - fi + debug "Starting pmon service..." + /bin/systemctl start pmon + debug "Started pmon service" fi }