Skip to content

Commit 0bec9bb

Browse files
authored
Merge pull request #1152 from mloskot/patch-1
Fix Ansible failure: Invalid variable name in 'register' specified: 'import'
2 parents 0fe9071 + 3682bbe commit 0bec9bb

File tree

1 file changed

+3
-3
lines changed
  • images/capi/ansible/windows/roles/load_additional_components/tasks

1 file changed

+3
-3
lines changed

images/capi/ansible/windows/roles/load_additional_components/tasks/url.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@
7272
poll: 60
7373
retries: 5
7474
delay: 3
75-
register: import
76-
until: import is not failed
75+
register: docker_import
76+
until: docker_import is not failed
7777
when: runtime == "docker"
7878

7979
- name: Remove downloaded files
8080
win_file:
8181
state: absent
8282
path: '{{ tempdir.stdout | trim }}\images'
83-
when: runtime == "containerd"
83+
when: runtime == "containerd"

0 commit comments

Comments
 (0)