Skip to content

Commit

Permalink
fix: default SRAM admin group should be src_co_admin
Browse files Browse the repository at this point in the history
src_ws_admin is no longer available on the workspace.
  • Loading branch information
dometto authored Jul 8, 2024
1 parent b5e48cf commit 31a9ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/src_galaxy_vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_galaxy_bootstrap: "{{ _molecule_idempotence | ternary(false, src_galaxy_bootstrap | default(true, true) | bool ) }}"
_galaxy_tool_files: "{{ src_galaxy_tool_files | default('') | split(',') | select() }}" # select() necessary because split on the default '' yields ['']
_galaxy_workflow_files: "{{ src_galaxy_workflow_files | default('') | split(',') | select() }}"
_galaxy_admin_co_group: "{{ src_galaxy_co_admin_group | default('src_ws_admin', true) }}"
_galaxy_admin_co_group: "{{ src_galaxy_co_admin_group | default('src_co_admin', true) }}"
_galaxy_custom_repo: "{{ src_galaxy_custom_repo | default('') }}"
_galaxy_custom_repo_branch: "{{ src_galaxy_custom_repo_branch | default('main', true) }}"
_galaxy_api_exposed: "{{ src_galaxy_api_exposed | default(true, true) }}"
Expand Down

0 comments on commit 31a9ee3

Please sign in to comment.