Skip to content

Commit a2c6484

Browse files
authored
Merge pull request #321 from mssonicbld/sonicbld/202603-merge
```<br>* eb98d49 - (HEAD -> 202603) Merge branch '202511' of https://github.com/sonic-net/sonic-utilities into 202603 (2026-04-25) [Sonic Automation] * ec3a3ad - (origin/202511) Fix Pensando DPU reboot handling in smartswitch operations (#4493) (2026-04-25) [mssonicbld]<br>```
2 parents 299cfa4 + eb98d49 commit a2c6484

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

scripts/reboot

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function stop_sonic_services()
9898
systemctl stop mux
9999
fi
100100

101-
if [[ x"$ASIC_TYPE" != x"mellanox" ]]; then
101+
if [[ x"$ASIC_TYPE" != x"mellanox" && x"$ASIC_TYPE" != x"pensando" ]]; then
102102
ASIC_CONF=${DEVPATH}/$PLATFORM/asic.conf
103103
if [ -f "$ASIC_CONF" ]; then
104104
source $ASIC_CONF
@@ -122,7 +122,9 @@ function stop_sonic_services()
122122
function stop_services_asan()
123123
{
124124
debug "Stopping swss for ASAN"
125-
systemctl stop swss
125+
if [[ x"$ASIC_TYPE" != x"pensando" ]]; then
126+
systemctl stop swss
127+
fi
126128
}
127129

128130
function clear_warm_boot()

0 commit comments

Comments
 (0)