1234567891011121314151617181920 |
- #!/bin/bash
- cargo build
- UAUTH=./target/debug/uauth2
- $UAUTH init
- $UAUTH config load /dev/stdin <<EOF
- base_url = "http://localhost:2114/"
- EOF
- $UAUTH cert generate
- $UAUTH client create testclient
- $UAUTH user create kestrel
- echo "please enter password for user 'kestrel'"
- $UAUTH user auth -p kestrel
- $UAUTH group create testgroup
- $UAUTH role create testrole
- $UAUTH group attach-role testgroup testrole
- $UAUTH group attach-user testgroup kestrel
|