#!/bin/bash
#
# Use the EVMS CLI to create a BBR feature-object.

child=$1
name=$2

if [ -z $name ]; then
	echo "USAGE: `basename $0` object name"
	exit 1
fi

evms -s << EOF > /dev/null
create:object,BBR={Name=${name}},$child
EOF

