if [[ ${TAG_VALUE}XXX == "XXX" ]]; then
echo "TAG_VALUE was blank, exiting!"
exit
fi
case @option.Command@ in
start)
echo 'I am the first box'
;;
stop)
echo 'I am the second box'
;;
restart)
echo 'I am the third box'
;;
status)
echo 'I am the fourth box'
;;
5)
echo 'I am the fifth box'
;;
*)
echo 'I am another box higher than 5'
;;
esac

