simple-setup.sh 445 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. cargo build
  3. UAUTH=./target/debug/uauth2
  4. $UAUTH init
  5. $UAUTH config load /dev/stdin <<EOF
  6. base_url = "http://localhost:2114/"
  7. EOF
  8. $UAUTH cert generate
  9. $UAUTH client create testclient
  10. $UAUTH user create kestrel
  11. echo "please enter password for user 'kestrel'"
  12. $UAUTH user auth -p kestrel
  13. $UAUTH group create testgroup
  14. $UAUTH role create testrole
  15. $UAUTH group attach-role testgroup testrole
  16. $UAUTH group attach-user testgroup kestrel