#!/bin/bash

IBPATH=${IBPATH:-/usr/sbin}

if [ "$1" = "-h" ]; then
	echo "Usage:"
	echo ""
	echo "	ibnodes [-h] [<topology-file> | -C ca_name -P ca_port -t(imeout) timeout_ms]"
	exit 0
fi

$IBPATH/ibhosts $@; $IBPATH/ibswitches $@
