Last active
May 31, 2018 10:49
-
-
Save daserzw/1d43a3cdc12f9555095c74d44a146cc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
git clone https://github.com/rohe/oidc-swamid-federation.git | |
cd oidc-swamid-federation | |
python3.5 -mvenv venv | |
. venv/bin/activate | |
pip install --no-cache-dir oidcop oidcrp fedoidcendpoint fedoidcrp atomicwrites | |
./create_fo_bundle.py | |
sleep 1 | |
cd MDSS | |
./create_sign_seq.py | |
sleep 1 | |
cd ../OP | |
./enrollment_setup.py | |
sleep 1 | |
cd ../RP | |
./enrollment_setup.py | |
sleep 2 | |
cd ../MDSS | |
./enroll.py RP OP | |
sleep 1 | |
cd ../RP | |
./rp.py -t -k conf& | |
sleep 1 | |
cd ../OP | |
./server.py -t -k conf& | |
sleep 2 | |
cd ../MDSS | |
./metadata_importer.py | |
sleep 2 | |
./processor.py | |
sleep 2 | |
./signing_service.py | |
sleep 2 | |
./mdss.py -t config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment