#!/bin/bash
# get_master.sh -  returns the name of the master control blade in the PAN.

MASTER=`/opt/panmgr/bin/esh pan | grep ^c | grep Master | cut -c 2`
echo "cblade-${MASTER}"
