Skip to content

Commit

Permalink
Merge pull request #154 from gmauro/master
Browse files Browse the repository at this point in the history
fix a typo in the name of the option
  • Loading branch information
natefoo authored May 17, 2022
2 parents a3dcedd + 4223f9a commit 09dd791
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ galaxy_app_config_default:
# Static configs that default to .xml files in the config dir but the role writes as .yml if configured
job_metrics_config_file: "{{ galaxy_config_dir }}/job_metrics_conf.{{ (galaxy_job_metrics_plugins is defined) | ternary('yml', 'xml') }}"
dependency_resolvers_config_file: "{{ galaxy_config_dir }}/dependency_resolvers_conf.{{ (galaxy_dependency_resolvers is defined) | ternary('yml', 'xml') }}"
containers_resolvers_config_file: "{{ (galaxy_container_resolvers is defined) | ternary(galaxy_config_dir ~ '/container_resolvers_conf.yml', none) }}"
container_resolvers_config_file: "{{ (galaxy_container_resolvers is defined) | ternary(galaxy_config_dir ~ '/container_resolvers_conf.yml', none) }}"

# Everything else
visualization_plugins_directory: "config/plugins/visualizations"
Expand Down
2 changes: 1 addition & 1 deletion tasks/static_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

- name: Create Galaxy container resolvers configuration file
copy:
dest: "{{ galaxy_config_merged[galaxy_app_config_section].containers_resolvers_config_file }}"
dest: "{{ galaxy_config_merged[galaxy_app_config_section].container_resolvers_config_file }}"
content: |
---
## This file is managed by Ansible. ALL CHANGES WILL BE OVERWRITTEN.
Expand Down

0 comments on commit 09dd791

Please sign in to comment.