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:
Dan Callaghan 2016-04-14 21:13:41 +10:00
parent bd633d7bae
commit 9f82a7dfe7

View file

@ -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 }}"