Skip to content

Commit

Permalink
Allow installation without any repo configured (#327)
Browse files Browse the repository at this point in the history
* fixes #326
Add a default value as an empty list to the task looping over the internally created global list of repositories

Co-authored-by: Olivier Clavel <olivier.clavel@gmail.com>
  • Loading branch information
shurikg and zeitounator committed Oct 24, 2022
1 parent 7352e2b commit f7bea7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
include_tasks: call_script.yml
vars:
script_name: create_repos_from_list
args: "{{ _nexus_repos_global_list }}"
args: "{{ _nexus_repos_global_list | d([]) }}"

- name: Create/check privileges
include_tasks: call_script.yml
Expand Down

0 comments on commit f7bea7d

Please sign in to comment.