#!/bin/sh
#
# List of CLI commands to be executed from FOS to collect debug data for FCoE
# components
#
if [ -f "/etc/fabos/cee.conf" ]; then
   /fabos/bin/fcoe --dump
   /fabos/bin/fcoe --loginshow
   /fabos/bin/fcoe --cfgshow
   /fabos/bin/fcoe --fipcfgshow 
   /fabos/bin/fcoelogincfg --show
else
  echo "% This command is not supported on this platform"
fi
