ffa7a582e5
Change-Id: I89e4126cdddcf91c6b375b898c06773941db2a9c
21 lines
294 B
Bash
Executable File
21 lines
294 B
Bash
Executable File
#!/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)
|