mirror of
https://github.com/ansible/awx.git
synced 2026-01-23 15:38:06 -03:30
Installer: remove quote filter from docker_registry_password
The docker_registry_password var isn't interpolated by the shell, so it shouldn't be quoted Fixes: #7695 Signed-off-by: Philip DOUGLASS <philip.douglass@amadeus.com>
This commit is contained in:
parent
bedbafe0f9
commit
ab20b5bd10
@ -3,7 +3,7 @@
|
||||
docker_login:
|
||||
registry: "{{ docker_registry }}"
|
||||
username: "{{ docker_registry_username }}"
|
||||
password: "{{ docker_registry_password | quote }}"
|
||||
password: "{{ docker_registry_password }}"
|
||||
reauthorize: true
|
||||
when: docker_registry is defined and docker_registry_password is defined
|
||||
delegate_to: localhost
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user