~ddellav/ubuntu/wily/python-pysaml2/debian-merge

« back to all changes in this revision

Viewing changes to example/run.sh

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2014-09-08 16:11:53 UTC
  • Revision ID: package-import@ubuntu.com-20140908161153-vms9r4gu0oz4v4ai
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
cd sp
 
4
../../tools/make_metadata.py sp_conf > sp.xml
 
5
 
 
6
cd ../idp2
 
7
../../tools/make_metadata.py idp_conf > idp.xml
 
8
 
 
9
cd ../sp
 
10
./sp.py sp_conf &
 
11
 
 
12
cd ../idp2
 
13
./idp.py idp_conf &
 
14
 
 
15
cd ..
 
16