You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
set -x
|
|
function die() {
|
|
local exitcode=$?
|
|
set +o xtrace
|
|
echo $@
|
|
exit $exitcode
|
|
}
|
|
|
|
noauth_tenant_id=me
|
|
if [ $1 == 'noauth' ]; then
|
|
NOAUTH="--tenant_id $noauth_tenant_id"
|
|
else
|
|
NOAUTH=
|
|
fi
|
|
|
|
FORMAT=" --request-format xml"
|
|
|
|
# test the CRUD of xxx
|
|
# TODO(yamahata)
|