2019-07-26 16:31:56 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-04-28 03:28:06 -05:00
|
|
|
# If run on supervisor of chassis, trigger remote execution of TSB on all linecards
|
|
|
|
if [ -f /etc/sonic/chassisdb.conf ]; then
|
|
|
|
rexec all -c "TSB chassis"
|
|
|
|
echo "Please execute \"rexec all -c 'sudo config save -y'\" to preserve System mode in Normal state after reboot\
|
|
|
|
or config reload on all linecards"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2022-07-31 00:16:58 -05:00
|
|
|
# toggle the mux to auto if dualtor
|
|
|
|
if [[ "$(sonic-cfggen -d -v DEVICE_METADATA.localhost.subtype | tr [:upper:] [:lower:])" == *"dualtor"* ]];
|
|
|
|
then
|
|
|
|
logger -t TSB -p user.info "Toggle all mux mode to auto"
|
|
|
|
sudo config mux mode auto all
|
2022-01-24 20:50:29 -06:00
|
|
|
fi
|
|
|
|
|
2022-07-31 00:16:58 -05:00
|
|
|
/usr/bin/TS TSB
|
2023-04-28 03:28:06 -05:00
|
|
|
if [[ "$(sonic-cfggen -d -v DEVICE_METADATA.localhost.type)" == *"SpineRouter"* ]] ; then
|
|
|
|
if [[ "$1" != "chassis" ]] ; then
|
|
|
|
echo "Please execute 'sudo config save' to preserve System mode in Normal state after reboot or config reload"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Please execute 'sudo config save' to preserve System mode in Normal state after reboot or config reload"
|
|
|
|
fi
|