beaker/server: fix client config quoting
I misunderstood what the |quote filter in Ansible does. It turns out bkr's config parser doesn't even handle escaped quotes correctly anyway(!) so for now we will have to just assume the admin username and password don't contain any quote characters.
This commit is contained in:
parent
bd633d7bae
commit
9f82a7dfe7
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
HUB_URL = "http://localhost/bkr"
|
||||
AUTH_METHOD = "password"
|
||||
USERNAME = {{ beaker_server_admin_user|quote }}
|
||||
PASSWORD = {{ beaker_server_admin_pass|quote }}
|
||||
USERNAME = "{{ beaker_server_admin_user }}"
|
||||
PASSWORD = "{{ beaker_server_admin_pass }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue