Skip to content
Snippets Groups Projects
Commit 1193935c authored by yvesn's avatar yvesn
Browse files

SSDM-6844: added big_data_link_server to installation

parent abc28bea
No related branches found
No related tags found
No related merge requests found
......@@ -52,11 +52,13 @@ println "installerDir:${installerDistDir}"
println "buildDir:${buildDir}"
println "installer:${project.projectDir}/resource/installer"
task copyResources(type: Copy, dependsOn: [compileJava, ':openbis_standard_technologies:zip', ':openbis_standard_technologies:zipDss']) {
task copyResources(type: Copy, dependsOn: [compileJava, ':openbis_standard_technologies:zip', ':openbis_standard_technologies:zipDss', 'openbis_standard_technologies:zipBdlServer']) {
from "${project.projectDir}/resource/installer"
from "${project.projectDir}/../openbis_standard_technologies/dist/tarball/installer"
from zipTree(project(':openbis_standard_technologies').zipDss.archivePath)
into installerDistDir
from zipTree(project(':openbis_standard_technologies').zipBdlServer.archivePath)
into installerDistDir
from (zipTree(project(':openbis_standard_technologies').zip.archivePath)) {
into "openBIS-server"
}
......
......@@ -37,6 +37,7 @@ if [ -d $ROOT/openBIS-server ]; then
copyFileIfExists $ROOT/openBIS-server/jetty/etc/openbis.conf $CONF/
copyFileIfExists $ROOT/openBIS-server/jetty/bin/jetty.properties $CONF/
copyFileIfExists $ROOT/openBIS-server/jetty/etc/jetty.properties $CONF/
copyFileIfExists $ROOT/big_data_link_server/config.json $CONF/
cp $ROOT/openBIS-server/jetty/webapps/openbis/custom/welcomePageSimpleGeneric.html $CONF/
# not always present
copyIfExists $ROOT/openBIS-server/jetty/etc/openBIS.keystore $CONF/.keystore
......
......@@ -51,6 +51,11 @@ fi
echo "mv $ROOT_DIR/datastore_server $BACKUP_DIR/datastore_server"
mv $ROOT_DIR/datastore_server $BACKUP_DIR/datastore_server
if [ -d $ROOT_DIR/big_data_link_server ]; then
echo "mv $ROOT_DIR/big_data_link_server $BACKUP_DIR/big_data_link_server"
mv $ROOT_DIR/big_data_link_server $BACKUP_DIR/big_data_link_server
fi
echo "cp -R $ROOT_DIR/core-plugins $BACKUP_DIR/core-plugins"
cp -R $ROOT_DIR/core-plugins $BACKUP_DIR/core-plugins
rm -rf $BACKUP_DIR/core-plugins/eln-lims/bin
......
......@@ -11,3 +11,6 @@ fi
# set all scripts executable
find $BASE/.. -type f -name "*.sh" -exec chmod 744 {} \;
# scripts which don't end in .sh
find . -type f -name "big_data_link_server" -exec chmod 744 {} \;
......@@ -41,6 +41,7 @@ if [ -d $ROOT/openBIS-server ]; then
restore $CONF/dss-datasource-mapping $ROOT/openBIS-server/jetty/etc dss-datasource-mapping
restore $CONF/capabilities $ROOT/openBIS-server/jetty/etc capabilities
restore $CONF/../openBIS-server/jetty/webapps/openbis/custom/welcomePageSimpleGeneric.html $ROOT/openBIS-server/jetty/webapps/openbis/custom welcomePageSimpleGeneric.html
restore $CONF/config.json $ROOT/big_data_link_server config.json
copyConfig $CONF/core-plugins "html/etc$" $ROOT/core-plugins
copyFolderIfExists $CONF/start.d $ROOT/openBIS-server/jetty/start.d
......@@ -52,4 +53,4 @@ restore $CONF/dss-service.properties $ROOT/datastore_server/etc service.properti
restore $CONF/dss-log.xml $ROOT/datastore_server/etc log.xml
restore $CONF/datastore_server.conf $ROOT/datastore_server/etc datastore_server.conf
restore $CONF/.keystore $ROOT/datastore_server/etc openBIS.keystore
copyIfExists $CONF/ext-lib $ROOT/datastore_server
\ No newline at end of file
copyIfExists $CONF/ext-lib $ROOT/datastore_server
......@@ -213,6 +213,12 @@
<file src="@{installer.dist.dir}/data" targetdir="$DATA_TMPEXTRACT" condition="isFirstTimeInstallation"/>
<parsable targetfile="$DATA_TMPEXTRACT/data/doc/getting-started-with-openBIS.html" condition="isFirstTimeInstallation"/>
</pack>
<pack name="Big Data Link Server" required="yes" loose="yes">
<description>The distributed data store server managing raw data</description>
<file src="@{installer.dist.dir}/big_data_link_server" targetdir="$INSTALL_PATH/servers"/>
</pack>
<pack name="Administration Scripts" required="yes" loose="yes">
<description>Scripts to facilitate openBIS administration</description>
......
includeFlat 'commonbase', 'common',
'openbis_api', 'openbis-common', 'authentication', 'dbmigration', 'openbis',
'datastore_server', 'screening', 'rtd_yeastx', 'rtd_phosphonetx', 'deep_sequencing_unit', 'plasmid',
'openbis_standard_technologies', 'microservice-server'
'openbis_standard_technologies', 'big_data_link_server'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment