From 104198416bcaf3884fa53b0bcdb4e459b4656d43 Mon Sep 17 00:00:00 2001 From: Hank Leininger Date: Wed, 2 Apr 2014 21:42:01 -0400 Subject: [PATCH] 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. --- example/all.sh | 8 ++++---- example/sp-wsgi/{conf.py.example => sp_conf.py.example} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename example/sp-wsgi/{conf.py.example => sp_conf.py.example} (100%) diff --git a/example/all.sh b/example/all.sh index ac03c3a..efbc145 100755 --- a/example/all.sh +++ b/example/all.sh @@ -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 & diff --git a/example/sp-wsgi/conf.py.example b/example/sp-wsgi/sp_conf.py.example similarity index 100% rename from example/sp-wsgi/conf.py.example rename to example/sp-wsgi/sp_conf.py.example