diff options
author | Alan Rominger <arominge@redhat.com> | 2023-07-07 17:24:49 +0200 |
---|---|---|
committer | Dave <dmz.oneill@gmail.com> | 2024-02-21 15:36:41 +0100 |
commit | 7ab2bca16e9f13581178f5c5f5f5ba5177fb3e43 (patch) | |
tree | bfe4e05aa38a6147a3d78d5b17f95a59b7301996 | |
parent | Style consistency for task 'when' (diff) | |
download | awx-7ab2bca16e9f13581178f5c5f5f5ba5177fb3e43.tar.xz awx-7ab2bca16e9f13581178f5c5f5f5ba5177fb3e43.zip |
Fix missing var name change
-rw-r--r-- | awx/playbooks/project_update.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awx/playbooks/project_update.yml b/awx/playbooks/project_update.yml index 75f9ab76bb..569c6abe88 100644 --- a/awx/playbooks/project_update.yml +++ b/awx/playbooks/project_update.yml @@ -232,7 +232,7 @@ - name: Fetch galaxy collections from collections/requirements.(yml/yaml) ansible.builtin.command: - cmd: "ansible-galaxy collection install -r {{ item }} {{ verbosity }}" + cmd: "ansible-galaxy collection install -r {{ req_file }} {{ verbosity }}" register: galaxy_collection_result vars: req_file: "{{ req_candidates | first_found }}" |