Renamed Applications/Application tags.
[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     localLogout.html \
16     globalLogout.html \
17     sp-example.key \
18     sp-example.crt \
19     attribute-map.xml \
20     attribute-policy.xml \
21     shibboleth2.xml"
22
23 for f in $CONFIGFILES; do
24     if test ! -f $f; then
25         cp $f.dist $f
26     fi;
27     done
28
29 exit 0