Correct location of TransportOption feature, makes no sense inside policies.
[shibboleth/sp.git] / postinstall
1 #!/bin/sh
2
3 cd /opt/shibboleth-sp/etc/shibboleth
4
5 CONFIGFILES=" \
6     native.logger \
7     shibd.logger \
8     syslog.logger \
9     console.logger \
10     accessError.html \
11     sessionError.html \
12     metadataError.html \
13     sslError.html \
14     bindingTemplate.html \
15     discoveryTemplate.html \
16     localLogout.html \
17     globalLogout.html \
18     attribute-map.xml \
19     attribute-policy.xml \
20     shibboleth2.xml"
21
22 for f in $CONFIGFILES; do
23     if test ! -f $f; then
24         cp $f.dist $f
25     fi;
26     done
27
28 sh ./keygen.sh -b
29
30 exit 0