#!/bin/sh cd /opt/shibboleth-sp/etc/shibboleth CONFIGFILES=" \ native.logger \ shibd.logger \ syslog.logger \ console.logger \ accessError.html \ sessionError.html \ metadataError.html \ sslError.html \ bindingTemplate.html \ localLogout.html \ globalLogout.html \ attribute-map.xml \ attribute-policy.xml \ shibboleth2.xml" for f in $CONFIGFILES; do if test ! -f $f; then cp $f.dist $f fi; done sh ./keygen.sh -b exit 0