docker-compose environment for the entire v.st system
https://v.st/
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.
15 lines
216 B
15 lines
216 B
2 years ago
|
#!/bin/sh
|
||
|
|
||
|
client_name="$1"
|
||
|
if [ -z "$client_name" ]; then
|
||
|
echo >&2 "usage: $0 client-name"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
kcadm.sh get clients \
|
||
|
-r "$REALM" \
|
||
|
-q "clientId=$client_name" \
|
||
|
--fields id \
|
||
|
--format csv \
|
||
|
--noquotes
|