Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
f6ab60e8
Commit
f6ab60e8
authored
14 years ago
by
buczekp
Browse files
Options
Downloads
Patches
Plain Diff
[SE-260] deploy PlasMapper as post installation action
SVN: 17541
parent
b84c7365
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openbis_all/source/bash/sprint_post_install.sh
+1
-0
1 addition, 0 deletions
openbis_all/source/bash/sprint_post_install.sh
openbis_all/source/bash/sprint_post_install_plasmids.sh
+20
-0
20 additions, 0 deletions
openbis_all/source/bash/sprint_post_install_plasmids.sh
with
21 additions
and
0 deletions
openbis_all/source/bash/sprint_post_install.sh
+
1
−
0
View file @
f6ab60e8
...
...
@@ -126,6 +126,7 @@ case "$SERVER" in
echo
PLASMIDS:
$PLASMIDS
;
restore_common
create_individual_greeting_message
$BIN
/sprint_post_install_plasmids.sh
;;
*
)
echo
Wrong Server!
$SERVER
is not
in
the list of openBIS Servers.
;
...
...
This diff is collapsed.
Click to expand it.
openbis_all/source/bash/sprint_post_install_plasmids.sh
0 → 100755
+
20
−
0
View file @
f6ab60e8
#!/bin/bash
# Finishes sprint installation of plasmids server
# Warning: all changes to this file should be transfered to SVN repository
JETTY_WEBAPPS
=
~/sprint/openBIS-server/jetty/webapps/
CONFIG_DIR
=
~/config
function
copy_rec_or_die
{
SRC
=
$1
DEST
=
$2
if
[
-f
$SRC
]
;
then
echo
Copy
$SRC
to
$DEST
cp
-r
$SRC
$DEST
else
echo
-e
"
\n
[ERROR]: cannot copy
$SRC
to
$DEST
, because
$SRC
does not exist"
exit
1
fi
}
copy_rec_or_die
$CONFIG_DIR
/PlasMapper
$JETTY_WEBAPPS
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment