File: run.sh

package info (click to toggle)
python-pysaml2 2.0.0-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 26,352 kB
  • ctags: 11,612
  • sloc: xml: 219,044; python: 50,122; makefile: 106; sh: 18
file content (16 lines) | stat: -rwxr-xr-x 191 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

cd sp
../../tools/make_metadata.py sp_conf > sp.xml

cd ../idp2
../../tools/make_metadata.py idp_conf > idp.xml

cd ../sp
./sp.py sp_conf &

cd ../idp2
./idp.py idp_conf &

cd ..