forked from gvlproject/gvldash
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matt Bull
committed
Apr 5, 2019
1 parent
4719f47
commit c7c4e58
Showing
4 changed files
with
78 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
################################################################################ | ||
# script run on target machine to install the gal command line utilities package | ||
################################################################################ | ||
|
||
[ -d "/mnt/gvl/apps" ] || mkdir -p /mnt/gvl/apps # ensure /mnt/galaxy/apps exists | ||
cd /opt/gvl | ||
if [ -d "/opt/gvl/gvl_commandline_utilities" ]; then | ||
cd /opt/gvl/gvl_commandline_utilities | ||
git pull https://github.com/MRC-CLIMB/gvl_commandline_utilities | ||
else | ||
git clone https://github.com/MRC-CLIMB/gvl_commandline_utilities | ||
fi | ||
chown -R ubuntu:ubuntu /opt/gvl/gvl_commandline_utilities | ||
sudo su - ubuntu -c "cd /opt/gvl/gvl_commandline_utilities; source run_all.sh -s" |
15 changes: 15 additions & 0 deletions
15
tool_installation_scripts/install_smrt_analysis_package.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
############################################################### | ||
# script run on target machine to install smrt_analysis package | ||
############################################################### | ||
|
||
[ -d "/mnt/gvl/apps" ] || mkdir -p /mnt/gvl/apps # ensure /mnt/galaxy/apps exists | ||
cd /opt/gvl | ||
if [ -d "/opt/gvl/gvl.ansible.smrt_analysis" ]; then | ||
cd /opt/gvl/gvl.ansible.smrt_analysis | ||
git pull https://github.com/MRC-CLIMB/gvl.ansible.smrt_analysis | ||
else | ||
git clone https://github.com/MRC-CLIMB/gvl.ansible.smrt_analysis | ||
fi | ||
cd /opt/gvl/gvl.ansible.smrt_analysis | ||
ansible-playbook -i inventory/builders playbook.yml |