Gitiles
Code Review
Sign In
gerrit.opencord.org
/
xos
/
308fae21725368afc202a8e7826c8e6b83d9710d
/
.
/
xos
/
api
/
examples
/
misc
/
delete_slice.sh
blob: 1113d4f99a3395ee9574379472b7cce846e43acd [
file
] [
log
] [
blame
]
#!/bin/bash
source
./
config
.
sh
source
./
util
.
sh
SLICE_NAME
=
mysite_test1
SLICE_ID
=
$
(
lookup_slice_id $SLICE_NAME
)
if
[[
$
?
!=
0
]];
then
exit
-
1
fi
curl
-
u $AUTH
-
X DELETE $HOST
/
xos
/
slices
/
$SLICE_ID
/