We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeb4b5d commit 5fe5c0dCopy full SHA for 5fe5c0d
example/run.sh
@@ -1,12 +1,18 @@
1
#!/bin/sh
2
3
-cd sp
4
-../../tools/make_metadata.py sp_conf > sp.xml
+cd sp-wsgi
+if [ ! -f conf.py ] ; then
5
+ cp conf.py.example conf.py
6
+fi
7
+../../tools/make_metadata.py conf > sp.xml
8
9
cd ../idp2
10
+if [ ! -f idp_conf.py ] ; then
11
+ cp idp_conf.py.example conf.py
12
13
../../tools/make_metadata.py idp_conf > idp.xml
14
-cd ../sp
15
+cd ../sp-wsgi
16
./sp.py sp_conf &
17
18
example/sp-wsgi/conf.py renamed to example/sp-wsgi/conf.py.example
@@ -35,7 +35,5 @@
35
"cert_file": "pki/mycert.pem",
36
"xmlsec_binary": xmlsec_path,
37
"metadata": {"local": ["../idp2/idp.xml"]},
38
- #"metadata": {"mdfile": ["./swamid2.md"]},
39
- #"metadata": {"local": ["./swamid-2.0.xml"]},
40
"name_form": NAME_FORMAT_URI,
41
}
0 commit comments