#! /bin/bash
# Copyright 2020 Cumulus Networks,  Inc.  All rights reserved.
#
# Record mlxcables output; used by cl-support
#

[[ -x /usr/bin/mst && -x /usr/bin/mlxcables ]] && {
    /usr/bin/mst cable add
    /usr/bin/mlxcables
    /usr/bin/mst cable del
}
