Make sp-wsgi/ layout agree with other examples.

idp2/, idp2_repoze/, and sp-repoze/ all agree that configs should be
{idp,sp}_conf.py, but sp-wsgi/ was the exception, calling its config
just conf.py.  Changed it to match the others, and updated all.sh
accordingly.
This commit is contained in:
Hank Leininger
2014-04-02 21:42:01 -04:00
parent a5a2a355f4
commit 104198416b
2 changed files with 4 additions and 4 deletions

View File

@@ -2,10 +2,10 @@
startme() {
cd sp-wsgi
if [ ! -f conf.py ] ; then
cp conf.py.example conf.py
if [ ! -f sp_conf.py ] ; then
cp sp_conf.py.example sp_conf.py
fi
../../tools/make_metadata.py conf > sp.xml
../../tools/make_metadata.py sp_conf > sp.xml
cd ../idp2
if [ ! -f idp_conf.py ] ; then
@@ -14,7 +14,7 @@ startme() {
../../tools/make_metadata.py idp_conf > idp.xml
cd ../sp-wsgi
./sp.py conf &
./sp.py sp_conf &
cd ../idp2
./idp.py idp_conf &