Update for release.
[shibboleth/cpp-sp.git] / postinstall
1 #!/bin/sh\r
2 \r
3 cd /opt/shibboleth-sp/etc/shibboleth\r
4 \r
5 CONFIGFILES=" \\r
6     native.logger \\r
7     shibd.logger \\r
8     shibboleth.logger \\r
9     accessError.html \\r
10     rmError.html \\r
11     sessionError.html \\r
12     metadataError.html \\r
13     sslError.html \\r
14     sp-example.key \\r
15     sp-example.crt \\r
16     AAP.xml \\r
17     shibboleth.xml \\r
18     example-metadata.xml"\r
19 \r
20 for f in $CONFIGFILES; do\r
21     if test ! -f $f; then\r
22         cp $f.dist $f\r
23     fi;\r
24     done\r
25 \r
26 exit 0\r