2019-07-26 16:31:56 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-04-28 08:11:55 -05:00
|
|
|
if [ -f /etc/sonic/chassisdb.conf ]; then
|
|
|
|
if [[ $1 == "no-stats" ]]; then
|
|
|
|
rexec all -c "TSC no-stats"
|
|
|
|
else
|
|
|
|
rexec all -c "TSC"
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
fi
|
2019-07-26 16:31:56 -05:00
|
|
|
|
2023-04-28 08:11:55 -05:00
|
|
|
/usr/bin/TS TSC
|
|
|
|
[[ $1 != "no-stats" ]] && portstat -p 5
|
2022-01-24 20:50:29 -06:00
|
|
|
|
|
|
|
if [[ "$(sonic-cfggen -d -v DEVICE_METADATA.localhost.subtype | tr [:upper:] [:lower:])" == *"dualtor"* ]]
|
|
|
|
then
|
|
|
|
echo
|
|
|
|
show mux status
|
|
|
|
fi
|