#!/bin/sh
#-------------
# Testing bosh
#-------------
CMDS="
/usr/bin/bosh
"

for cmd in $CMDS; do
	$cmd --help > /dev/null 2>&1
	RET=$?

	if [ $RET -ne 0 ]; then
	  echo "ERROR, failed to run ${cmd}" >&2
	  exit $RET
	fi
done
