Skip to content

Commit 58ddcf1

Browse files
authored
Merge pull request #132 from martenson/umsa-shed
allow custom toolsheds, add TTS to umsa
2 parents 6cc37ee + a5a4284 commit 58ddcf1

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0"?>
2+
<tool_sheds>
3+
<tool_shed name="Galaxy Main Tool Shed" url="https://toolshed.g2.bx.psu.edu/"/>
4+
<tool_shed name="Galaxy Test Tool Shed" url="https://testtoolshed.g2.bx.psu.edu/"/>
5+
</tool_sheds>

group_vars/galaxyservers.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ csnt_tool_config_file:
3333
csnt_library_import_dir: null
3434
csnt_user_library_import_dir: null
3535
csnt_allow_path_paste: false
36+
csnt_tool_sheds_config_file: "{{ galaxy_root }}/server/config/tool_sheds_conf.xml.sample"
3637
admin_ssh_keys: false
3738
enable_telegraf: false
3839
enable_flower: false
@@ -113,6 +114,7 @@ galaxy_config:
113114
job_config: "{{ galaxy_job_config }}" # Use the variable we defined above
114115
vault_config_file: vault_conf.yml
115116
tool_config_file: "{{ csnt_tool_config_file }}"
117+
tool_sheds_config_file: "{{ csnt_tool_sheds_config_file }}"
116118
sanitize_allowlist_file: "{{ galaxy_mutable_config_dir }}/sanitize_allowlist.txt"
117119
# SQL Performance
118120
slow_query_log_threshold: 5

host_vars/galaxy-umsa.grid.cesnet.cz/vars.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ csnt_short_term_storage_dir: /rbd/data/short_term_web_storage
1313
csnt_tool_config_file:
1414
- "{{ galaxy_config_dir }}/tool_conf.xml"
1515
- "{{ galaxy_config_dir }}/local_tool_conf.xml"
16+
csnt_tool_sheds_config_file: "{{ galaxy_config_dir }}/tool_sheds_conf.xml"
1617
# csnt_edam_panel_views: operations,topics
1718
# csnt_default_panel_view: all_tools
1819
csnt_allow_path_paste: true
@@ -39,5 +40,7 @@ galaxy_config_files:
3940
dest: "{{ galaxy_config_dir }}/tool_conf.xml"
4041
- src: files/galaxy/config/oidc_config.xml
4142
dest: "{{ galaxy_config_dir }}/oidc_config.xml"
43+
- src: "files/{{ inventory_hostname }}/config/tool_sheds_conf.xml"
44+
dest: "{{ galaxy_config_dir }}/tool_sheds_conf.xml"
4245
# - src: "files/{{ inventory_hostname }}/all_tools.yml"
4346
# dest: "{{ galaxy_config_dir }}/plugins/activities/all_tools.yml"

0 commit comments

Comments
 (0)