#!/bin/sh -p
# DESCRIPTION: Print hardware/path_to_inst diagnostics from SyMON (Enterprise servers only)
#
if [ -x /opt/SUNWsymon/bin/configd ]; then
        /opt/SUNWsymon/bin/configd -dpte
else   
        echo 'symon configd not found in default install location.'
        echo 'Aborting test'
fi

