diff --git a/openbis_all/source/bash/sprint_post_install.sh b/openbis_all/source/bash/sprint_post_install.sh index 12c3b0c81ff3611a7d964e401a3ab967882490ea..1fdc984ca66f5590e786317b6e8e999e97ebaacc 100755 --- a/openbis_all/source/bash/sprint_post_install.sh +++ b/openbis_all/source/bash/sprint_post_install.sh @@ -27,9 +27,15 @@ function create_individual_greeting_message { function restore_loginHeader { if [ -f ~/config/loginHeader.html ]; then echo restoring loginHeader.html... - cp -r ~/config/images ~/sprint/openBIS-server/apache-tomcat/webapps/openbis/ - cp ~/config/loginHeader.html ~/sprint/openBIS-server/apache-tomcat/webapps/openbis/ - cp ~/config/help.html ~/sprint/openBIS-server/apache-tomcat/webapps/openbis/ + cp -r ~/config/images ~openbis/sprint/openBIS-server/apache-tomcat/webapps/openbis/ + cp ~/config/loginHeader.html ~openbis/sprint/openBIS-server/apache-tomcat/webapps/openbis/ + cp ~/config/help.html ~openbis/sprint/openBIS-server/apache-tomcat/webapps/openbis/ + fi + if [ -f ~openbis/config/index.html ]; then + cp ~openbis/config/index.html ~openbis/sprint/openBIS-server/apache-tomcat/webapps/openbis/ + fi + if [ -f ~openbis/config/datastore_log.xml ]; then + cp ~openbis/config/datastore_log.xml ~openbis/sprint/datastore_server/etc/ fi }